美文网首页
element-ui部分组件的引入

element-ui部分组件的引入

作者: 依依田 | 来源:发表于2018-08-20 16:09 被阅读0次

import { MessageBox } from 'element-ui'
按需引入组件时可能会遇到以下问题:
1.未调用 页面初始化时就出现空白弹窗
2.开发环境正常,但是线上环境弹窗不出现。

//引入相应的css
解决办法:
MessageBox.install = function (Vue, options) {
Vue.prototype.messagebox = MessageBox } Vue.use(MessageBox) Vue.prototype.alert = MessageBox.alert;

main.js里面进行引入以及注册

相关文章

网友评论

      本文标题:element-ui部分组件的引入

      本文链接:https://www.haomeiwen.com/subject/uqeliftx.html