Blame view

examples/routers/tree.vue 1.86 KB
89f2ba8b   梁灏   init Tree component
1
  <template>
1183836a   梁灏   update
2
      <Tree :data="db" show-checkbox></Tree>
89f2ba8b   梁灏   init Tree component
3
4
5
  </template>
  <script>
      export default {
e6c0b158   梁灏   update
6
          data () {
e81207a2   梁灏   update Tree
7
              return {
1183836a   梁灏   update
8
                  db:[
75c32d5f   梁灏   rebuild Tree
9
                      {
1183836a   梁灏   update
10
11
                          title: '父级',
                          checked: false,
69a10b78   梁灏   fixed #787
12
13
                          children: [
                              {
1183836a   梁灏   update
14
15
                                  title: '孩子',
                                  checked: false,
69a10b78   梁灏   fixed #787
16
17
                                  children: [
                                      {
1183836a   梁灏   update
18
19
                                          title: '孙子',
                                          checked: true
69a10b78   梁灏   fixed #787
20
21
                                      },
                                      {
1183836a   梁灏   update
22
23
24
25
26
27
28
29
                                          title: '孙子',
                                          checked: false,
                                          children: [
                                              {
                                                  title: '曾孙',
                                                  checked: false
                                              }
                                          ]
69a10b78   梁灏   fixed #787
30
31
                                      }
                                  ]
1183836a   梁灏   update
32
33
34
35
36
37
38
39
40
41
                              }
                          ]
                      },
                      {
                          title: '其他',
                          checked: false,
                          children: [
                              {
                                  title: '其他孩子',
                                  checked: true
69a10b78   梁灏   fixed #787
42
43
                              },
                              {
1183836a   梁灏   update
44
45
                                  title: '其他孩子2',
                                  checked: true
69a10b78   梁灏   fixed #787
46
47
                              }
                          ]
c8157442   梁灏   fixed #499
48
                      }
75c32d5f   梁灏   rebuild Tree
49
                  ]
e81207a2   梁灏   update Tree
50
              }
9d79a51f   梁灏   update Tree
51
52
          },
          methods: {
1183836a   梁灏   update
53
  
69a10b78   梁灏   fixed #787
54
55
          },
          mounted () {
1183836a   梁灏   update
56
  
e81207a2   梁灏   update Tree
57
58
59
          }
      }
  </script>