mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 14:32:46 +08:00
17 lines
427 B
Markdown
17 lines
427 B
Markdown
```html
|
|
<template>
|
|
<wb-input type="textarea" :autosize="true" :value.sync="text7"
|
|
placeholder="请输入文本"></wb-input>
|
|
<wb-input type="textarea" :autosize="{min:4, max:6}" :value.sync="text7"
|
|
placeholder="请输入文本"></wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
text7: "",
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |