其他分享
首页 > 其他分享> > element-UI提示框

element-UI提示框

作者:互联网

 1         //弹窗提示框1
 2         alert1: function () {
 3             this.$message('这是一条消息提示');
 4         },
 5         //弹窗提示框2
 6         alert2: function () {
 7             this.$message({
 8                 message: '恭喜你,这是一条成功消息',
 9                 type: 'success'
10             });
11         },
12         //弹窗提示框3
13         alert3: function () {
14             this.$message({
15                 message: '警告哦,这是一条警告消息',
16                 type: 'warning'
17             });
18         },
19         //弹窗提示框4
20         alert4: function () {
21             this.$message.error('错了哦,这是一条错误消息');
22         }

 

标签:function,一条,element,UI,message,提示框,type,弹窗
来源: https://www.cnblogs.com/lwl80/p/16193102.html