iview/examples/routers/input.vue
2017-04-01 12:08:08 +08:00

14 lines
292 B
Vue

<template>
<div>
<Input v-model="value" placeholder="请输入..." style="width: 150px" icon="ios-clock-outline"></Input>
</div>
</template>
<script>
export default {
data () {
return {
value: ''
}
}
}
</script>