mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-11 21:38:53 +08:00
16 lines
462 B
Markdown
16 lines
462 B
Markdown
```html
|
|
<template>
|
|
<wb-input placeholder="请输入文本" :disabled="true"></wb-input>
|
|
<wb-input type="textarea" placeholder="请输入文本" disabled></wb-input>
|
|
<wb-input placeholder="请输入文本" :readonly="true"></wb-input>
|
|
<wb-input type="textarea" placeholder="请输入文本" readonly></wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function () {
|
|
return {
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
``` |