iview/examples/routers/input.vue

18 lines
455 B
Vue
Raw Normal View History

2016-11-07 14:16:20 +08:00
<template>
2018-03-13 11:49:11 +08:00
<div style="width: 200px;margin: 100px;">
{{ value6 }}
<Input v-model="value5" type="textarea" placeholder="Enter something..."></Input>
<Input v-model="value6" type="textarea" :rows="4" placeholder="Enter something..."></Input>
</div>
2016-11-07 14:16:20 +08:00
</template>
<script>
export default {
data () {
return {
2018-03-13 11:49:11 +08:00
value5: '',
value6: ''
}
2016-11-07 14:16:20 +08:00
}
}
2017-03-01 15:23:12 +08:00
</script>