美文网首页
user.js使用element-ui弹框

user.js使用element-ui弹框

作者: 实质xing | 来源:发表于2020-05-11 11:14 被阅读0次

    引入

    import Vue from 'vue';
    import ElementUI from 'element-ui';
    

    一般.vue页面我们是这样写

    image.png
    但是在js里面
     ElementUI.Notification({
            title: '警告',
            message: '这是一条警告的提示消息',
            type: 'warning'
        });
    
    ElementUI.Message 对应的是this.$message方法
    ElementUI.Notification 对应的是this.$notify方法
    ElementUI.MessageBox 对应的是this.$alert方法
    

    相关文章

      网友评论

          本文标题:user.js使用element-ui弹框

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