init Tree component

init Tree component
This commit is contained in:
梁灏 2017-02-06 11:24:03 +08:00
parent ff16f09614
commit 89f2ba8bad
9 changed files with 56 additions and 1 deletions

View file

@ -0,0 +1,2 @@
import Tree from './tree.vue';
export default Tree;

View file

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
props: {},
data () {
return {};
},
computed: {},
methods: {}
};
</script>

View file

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
props: {},
data () {
return {};
},
computed: {},
methods: {}
};
</script>