mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 14:32:46 +08:00
19 lines
439 B
Markdown
19 lines
439 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<wb-input placeholder="请输入文本" disabled></wb-input>
|
|
<wb-input type="textarea" placeholder="请输入文本" disabled></wb-input>
|
|
<wb-input placeholder="请输入文本" readonly></wb-input>
|
|
<wb-input type="textarea" placeholder="请输入文本" readonly></wb-input>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
``` |