el-input设置默认值
时间: 2023-10-08 16:05:28 浏览: 163
使用jQuery给input标签设置默认值
你可以在 el-input 组件中使用 v-model 绑定数据,并在 data 中设置默认值。例如:
```html
<template>
<el-input v-model="inputValue" />
</template>
<script>
export default {
data() {
return {
inputValue: '默认值'
}
}
}
</script>
```
这样,在页面加载时,el-input 的初始值就会是 "默认值"。
阅读全文