vue怎么讲el-input设置成无边框
时间: 2024-02-19 20:54:25 浏览: 115
vue + el-input 中 textarea 实现 placeholder 换行
你可以按照以下步骤将el-input设置为无边框:
1. 在el-input标签中添加一个class属性,例如borderNone。
2. 在样式中使用/deep/来穿透el-input__inner选择器,将其边框设置为none。
下面是一个示例代码:
```html
<el-input v-model="input" class="borderNone" placeholder="此处展示结果"></el-input>
```
```css
<style lang="less" scoped>
.borderNone /deep/ .el-input__inner {
border: none;
}
</style>
```
阅读全文