element-ui 自定义属性
时间: 2023-06-28 14:04:28 浏览: 431
customStyle
Element-UI 允许通过 `custom-class` 和 `custom-style` 两个属性来自定义组件的样式。
例如,在使用 `el-table` 组件时,可以通过 `custom-class` 属性来设定自定义样式类:
```html
<el-table
:data="tableData"
:columns="tableColumns"
custom-class="my-table">
</el-table>
```
然后在 CSS 样式表中定义 `.my-table` 类:
```css
.my-table {
background-color: #f2f2f2;
}
```
类似地,通过 `custom-style` 属性可以直接定义组件的样式行内属性:
```html
<el-button custom-style="color: red;">红色按钮</el-button>
```
需要注意的是,使用 `custom-style` 属性时,需要使用驼峰式命名法,例如 `backgroundColor`,而不是 `background-color`。
阅读全文