mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 22:42:41 +08:00
15 lines
375 B
Markdown
15 lines
375 B
Markdown
```html
|
|
<template>
|
|
<Wb-input :value.sync="text6" type="textarea" placeholder="请输入文本"></Wb-input>
|
|
<Wb-input :value.sync="text6" type="textarea" :rows="4" placeholder="请输入文本"></Wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
text6: "",
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |