Created
September 26, 2016 14:45
-
-
Save ChadTaljaardt/73fc329d2cf39860ac157555cf9194a1 to your computer and use it in GitHub Desktop.
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
<style> | |
</style> | |
<template> | |
</template> | |
<script> | |
console.log("test"); | |
export default { | |
props: { | |
model: Object | |
}, | |
data: function () { | |
return { | |
open: false | |
} | |
}, | |
computed: { | |
isFolder: function () { | |
return this.model.children && | |
this.model.children.length | |
} | |
}, | |
methods: { | |
toggle: function () { | |
if (this.isFolder) { | |
this.open = !this.open | |
} | |
}, | |
changeType: function () { | |
if (!this.isFolder) { | |
Vue.set(this.model, 'children', []) | |
this.addChild() | |
this.open = true | |
} | |
}, | |
addChild: function () { | |
this.model.children.push({ | |
name: 'new stuff' | |
}) | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment