element 局布组件使用

谁说胖子不能爱 提交于 2019-12-24 12:14:43

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>


import Vue from 'vue';
import {Loading, Message, MessageBox, Notification} from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

Vue.prototype.$alert = MessageBox.alert;
Vue.prototype.$confirm = MessageBox.confirm;
Vue.prototype.$prompt = MessageBox.prompt;
Vue.prototype.$msgbox = MessageBox;
Vue.prototype.$message = Message;
Vue.prototype.$notify = Notification;
Loading.install(Vue);

export {Message, Loading, MessageBox, Notification};


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!