-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy pathapp.vue
101 lines (95 loc) · 1.72 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<template>
<div>
<p>(双点击可以将项目转成目录) Vue.JS2 官网 树 for vue-cli</p>
<!-- the demo root element -->
<ul id="demo">
<item class="item" :model="treeData">
</item>
</ul>
</div>
</template>
<script>
// demo data
var data1 = {
name: 'root',
no: '1',
children: [{
name: 'hello',
no: '2',
}, {
name: 'wat',
no: '3',
}, {
name: 'child folder',
no: '4',
children: [{
name: 'child folder',
no: '5',
children: [{
name: 'hello',
no: '6',
}, {
name: 'wat',
no: '7',
}]
}, {
name: 'hello',
no: '8',
}, {
name: 'wat',
no:'9',
}, {
name: 'child folder',
no:'10',
children: [{
name: 'hello',
no:'11',
}, {
name: 'wat',
no:'12',
}]
}]
}]
};
var data2 = {
name: 'root',
children: [{
name: 'hello'
}, {
name: 'wat'
}, {
name: 'child folder',
}]
};
import itemTemplate from './item-template.vue'
export default {
components: {
'item': itemTemplate
},
data() {
return {
treeData: data1
}
},
computed: {},
methods: {},
filters: {}
}
</script>
<style>
body {
font-family: Menlo, Consolas, monospace;
color: #444;
}
.item {
cursor: pointer;
}
.bold {
font-weight: bold;
}
ul {
padding-left: 1em;
line-height: 1.5em;
list-style-type: dot;
}
</style>