Blame view

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