el-button 自定义背景图片
<el-button circle plain :style="iconStyle(1)" @click="details(sc.row)"></el-button>
import vIcon from "@/assets/img/icon_view.png";
iconStyle(t) {
let s = "width: 42px;height: 42px;align-items: center";
if (t == 1) {
return "backgroundImage:url(" + vIcon + ");margin:0px 16px 0px 0px;" + s;
} else if (t == 2) {
return "backgroundImage:url(" + dIcon + ");margin:0 auto;" + s;
}
}