Blame view

test/routers/date.vue 560 Bytes
0f677893   梁灏   update DatePicker
1
  <template>
d31b0801   梁灏   fixed DatePicker bug
2
3
4
5
6
7
8
      <row>
          <i-col span="12">
              <date-picker type="date" placeholder="选择日期" style="width: 200px"></date-picker>
          </i-col>
          <i-col span="12">
              <date-picker type="daterange" placement="bottom-end" placeholder="选择日期" style="width: 200px"></date-picker>
          </i-col>
9d844d53   梁灏   fixed Layout bug
9
10
11
          <i-col span="12">
              <time-picker placeholder="选择时间" :disabled-hours="[1,2]" style="width: 200px"></time-picker>
          </i-col>
d31b0801   梁灏   fixed DatePicker bug
12
      </row>
0f677893   梁灏   update DatePicker
13
14
15
  </template>
  <script>
      export default {
d31b0801   梁灏   fixed DatePicker bug
16
  
0f677893   梁灏   update DatePicker
17
      }
d20fe0ee   梁灏   update DatePicker
18
  </script>