iview/examples/routers/input.vue

25 lines
607 B
Vue
Raw Normal View History

2016-11-07 14:16:20 +08:00
<template>
2017-04-01 12:28:32 +08:00
<div style="width: 300px;">
2017-04-01 12:48:45 +08:00
<i-input v-model="value11" icon="ios-clock-outline">
<span slot="prepend">.com</span>
</i-input>
2017-04-01 12:28:32 +08:00
<i-input v-model="value11" icon="ios-clock-outline">
2017-04-01 12:48:45 +08:00
<span slot="append">.com</span>
2017-04-01 12:28:32 +08:00
</i-input>
</div>
2016-11-07 14:16:20 +08:00
</template>
<script>
export default {
data () {
return {
2017-04-01 12:28:32 +08:00
value11: '',
value12: '',
value13: '',
select1: 'http',
select2: 'com',
select3: 'day'
}
2016-11-07 14:16:20 +08:00
}
}
2017-03-01 15:23:12 +08:00
</script>