MessageBox的局部引入方法虐有不同,MessageBox包含了
$msgbox(options)
$alert(message, title, options)
或 $alert(message, options)
$confirm(message, title, options)
或 $confirm(message, options)
$prompt(message, title, options)
或 $prompt(message, options)
以上四个部分。
局部引入通过 import { MessageBox } from ‘element-ui‘;
再通过
Vue.prototype.$confirm = MessageBox.confirm
添加到对应的prototype里。
原文:https://www.cnblogs.com/xuxux/p/13542838.html