element ui 输入框 只读
时间: 2024-07-12 19:01:15 浏览: 152
vue element-ui实现input输入框金额数字添加千分位
在Element UI的`el-input`组件中,如果你想创建一个只读的输入框,你可以设置其`readonly`属性。这是Vue 2中Element UI的用法[^1]:
```html
<template>
<el-input v-model="inputValue" readonly></el-input>
</template>
<script>
export default {
data() {
return {
inputValue: 'This input is read-only',
};
},
};
</script>
```
在Element Plus中,`readonly`属性同样适用。只需确保你在使用时查看Element Plus的最新文档,因为可能有些细微的变化。
相关问题--
1. 如何在Element Plus的el-input中禁用输入而非使其只读?
2.Element Plus文档在哪里可以找到?
3.Element Plus的el-input是否有其他自定义选项来控制输入框的样式?
阅读全文