vue $confirm 自定义图标及修改图标颜色 一、先直接上解决方案,再讲解源码。 this.$confirm('', { title:"提示", message:"确认删除?", iconClass:"el-icon-question colorYellow", }).then(() => { }) 1. 2. 3. 4. 5. 6. 7. el-icon-question是element的图标。colorYellow为颜色样式 这里说明下...