在Element UI中,要修改el-button的颜色,可以通过以下几种方式实现: 1. 使用内联样式 直接在el-button组件上添加style属性,并设置background-color来改变按钮的背景颜色。例如: html <el-button style="background-color: #ff0000; color: #ffffff;">红色按钮</el-button> 这种方法简单直接,但...
一、先直接上解决方案,再讲解源码。 this.$confirm('', { title:"提示", message:"确认删除?", iconClass:"el-icon-question colorYellow", }).then(() => { }) 1. 2. 3. 4. 5. 6. 7. el-icon-question是element的图标。colorYellow为颜色样式 这里说明下,colorYellow必须写在全局样式文件内才管用...