2020-08-27 17:18:57 +08:00

405 B

layout
templateLayout
<template>
    <wb-input type="textarea" autosize v-model="text1" placeholder="请输入文本"></wb-input>
    <wb-input type="textarea" :autosize="{min:4, max:6}" v-model="text2" placeholder="请输入文本"></wb-input>
</template>
<script>
export default {
    data(){
        return {
            text1: '',
            text2: '',
        }
    }
}
</script>