Blame view

examples/routers/input.vue 486 Bytes
7d5431d8   梁灏   update some style
1
  <template>
319f5f86   梁灏   fixed #554
2
3
4
5
      <div style="width: 300px;">
          <i-input v-model="value11" icon="ios-clock-outline">
              <span slot="prepend">http://</span>
          </i-input>
0f822c9b   梁灏   add Input component
6
      </div>
7d5431d8   梁灏   update some style
7
8
  </template>
  <script>
7d5431d8   梁灏   update some style
9
      export default {
7d5431d8   梁灏   update some style
10
11
          data () {
              return {
319f5f86   梁灏   fixed #554
12
13
14
15
16
17
                  value11: '',
                  value12: '',
                  value13: '',
                  select1: 'http',
                  select2: 'com',
                  select3: 'day'
0f822c9b   梁灏   add Input component
18
              }
7d5431d8   梁灏   update some style
19
20
          }
      }
fc7ef072   梁灏   support Input
21
  </script>