Blame view

examples/routers/input.vue 663 Bytes
7d5431d8   梁灏   update some style
1
  <template>
319f5f86   梁灏   fixed #554
2
      <div style="width: 300px;">
8d3a02a5   丁强   修改input组件 autofoc...
3
          <i-input v-model="value11" icon="ios-clock-outline" :autofocus="autofocus">
f4e462c0   梁灏   #554
4
5
              <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
                  value11: '',
                  value12: '',
                  value13: '',
                  select1: 'http',
                  select2: 'com',
8d3a02a5   丁强   修改input组件 autofoc...
20
21
                  select3: 'day',
                  autofocus: true
0f822c9b   梁灏   add Input component
22
              }
7d5431d8   梁灏   update some style
23
24
          }
      }
fc7ef072   梁灏   support Input
25
  </script>