init Tree component
init Tree component
This commit is contained in:
parent
ff16f09614
commit
89f2ba8bad
9 changed files with 56 additions and 1 deletions
2
src/components/tree/index.js
Normal file
2
src/components/tree/index.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
import Tree from './tree.vue';
|
||||
export default Tree;
|
13
src/components/tree/tree-node.vue
Normal file
13
src/components/tree/tree-node.vue
Normal file
|
@ -0,0 +1,13 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {},
|
||||
data () {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {}
|
||||
};
|
||||
</script>
|
13
src/components/tree/tree.vue
Normal file
13
src/components/tree/tree.vue
Normal file
|
@ -0,0 +1,13 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {},
|
||||
data () {
|
||||
return {};
|
||||
},
|
||||
computed: {},
|
||||
methods: {}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue