Vue Element-UI 如何配置Notification 全局变量(例如duration 和 offset)

Vue  Element-UI 如何配置Notification 全局变量(例如duration 和 offset)

如题 ...


回答:

Notification.config({

duration: 3000,

zIndex: 2000

})

见 :
https://vue-element-multiple....


或者参考Message的修改方法 :
https://codeleading.com/artic...

['success', 'warning', 'info', 'error'].forEach(type => {

Notification[type] = options => {

if (typeof options === 'string' || isVNode(options)) {

options = {

message: options

};

}

options.type = type;

return Notification(options);

};

});

以上是 Vue Element-UI 如何配置Notification 全局变量(例如duration 和 offset) 的全部内容, 来源链接: utcz.com/p/935785.html

回到顶部