Blame view

test/routers/more.vue 640 Bytes
2d948738   梁灏   update TimePicker...
1
2
3
  <style>
      body{
          height: 2000px !important;
9d844d53   梁灏   fixed Layout bug
4
5
      }
  </style>
7fa943eb   梁灏   init
6
  <template>
2d948738   梁灏   update TimePicker...
7
8
9
10
11
12
      {{properties|json}}<br>
      {{units|json}}
      <Checkbox-group :model.sync="properties">
          <Checkbox v-for="unit in units" :value="unit.UnitName"></Checkbox>
      </Checkbox-group>
      <Back-top></Back-top>
7fa943eb   梁灏   init
13
14
  </template>
  <script>
7fa943eb   梁灏   init
15
      export default {
2d948738   梁灏   update TimePicker...
16
17
18
19
20
21
22
23
24
25
26
          data () {
              return {
                  properties: [],
                  units: []
              }
          },
          ready () {
              setTimeout(() => {
                  this.units = [{UnitName:"件"},{UnitName:"箱"},{UnitName:"双"}];
              }, 1000);
          }
7fa943eb   梁灏   init
27
      }
e1134de2   jingsam   not bundle vue in...
28
  </script>