其他分享
首页 > 其他分享> > Error in v-on handler: “TypeError: this.$confirm is not a function“

Error in v-on handler: “TypeError: this.$confirm is not a function“

作者:互联网

Error in v-on handler: “TypeError: this.$confirm is not a function“

在vue项目中从全局引入element-ui改为按需引入后报错

解决方法:

1 引入messageBox 插件
import {MessageBox} from ‘element-ui’

2 在vue 的原型对象上挂载confirm
Vue.prototype.$confirm = MessageBox.confirm

 

 

标签:function,MessageBox,vue,TypeError,confirm,handler,Error
来源: https://www.cnblogs.com/Ming2021/p/15602671.html