mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
405 B
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>