项目中出于方便,类似 MessageBox 常规组件会选择全局引用,但是,初次接触 mint-ui 的宝宝发现当使用
this.$MessageBox({
title: '提示',
message: '确定执行此操作?',
showCancelButton: true
})
这时会报错
Error in event handler for "click": "TypeError: this.$MessageBox is not a function"
试着this.$MessageBox 改为this.$messageBox 依然同样错误,最后为 this.$messagebox
this.$messagebox({
title: '提示',
message: '确定执行此操作?',
showCancelButton: true
})