mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-09 04:04:27 +08:00
19 lines
405 B
Markdown
19 lines
405 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<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>
|
|
``` |