This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-card> | |
<v-card-text> | |
{{ category }} | |
<radio-tree :items="categories" value-key="id" v-model="category" ref="radioTree"></radio-tree> | |
</v-card-text> | |
<v-card-actions> | |
<v-btn @click.stop="nuke()" color="warning">Nuke</v-btn> | |
</v-card-actions> | |
</v-card> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* js-events-demo-01.js | |
Simple JavaScript events system (with handler filtering on data objects) | |
Author: Pat Long | |
Date: 2018/01/23 | |
License: CC-BY-SA-4.0 | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class Foo { | |
constructor(){ | |
console.log('Hi Foo!'); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
bower_components/ |