iview/examples/routers/input.vue
2017-04-25 16:52:51 +08:00

24 lines
617 B
Vue

<template>
<div style="width: 300px;">
<i-input v-model="value11" icon="ios-clock-outline" autofocus>
<span slot="prepend">.com</span>
</i-input>
<i-input v-model="value11" icon="ios-clock-outline">
<span slot="append">.com</span>
</i-input>
</div>
</template>
<script>
export default {
data () {
return {
value11: '',
value12: '',
value13: '',
select1: 'http',
select2: 'com',
select3: 'day'
}
}
}
</script>