vue:突然发现onok无法使用
const that = this;
this.$confirm(
{
title: "修改商品提示",
content: "如果当前商品存在于商品活动库,则在商品活动库的状态会下架",
onOk: function () {
that.submitForm();
}
});
突然发现 this.$confirm无法进入onok
最终发现是主题冲突,因同事引入了 elementui 主题
最终删除 element-ui 即可
yarn remove element-ui