tiny-vue/examples/sites/demos/mobile/app/input/cols-rows.vue

29 lines
434 B
Vue

<template>
<div class="input-wrap">
<tiny-input v-model="input" type="textarea" :cols="5" :rows="1"></tiny-input>
</div>
</template>
<script lang="jsx">
import { Input } from '@opentiny/vue'
export default {
components: {
TinyInput: Input
},
data() {
return {
input: '测试 cols 属性'
}
}
}
</script>
<style>
.input-wrap {
padding-top: 20px;
height: 100%;
background: #f4f4f4;
}
</style>