引入
import Vue from 'vue';
import ElementUI from 'element-ui';
一般.vue页面我们是这样写
![](https://img.haomeiwen.com/i18056708/918219c6d5906734.png)
但是在js里面
ElementUI.Notification({
title: '警告',
message: '这是一条警告的提示消息',
type: 'warning'
});
ElementUI.Message 对应的是this.$message方法
ElementUI.Notification 对应的是this.$notify方法
ElementUI.MessageBox 对应的是this.$alert方法
网友评论