今天在全局使用Message组件的时候(单独使用import Message from ‘element-ui’),发现第一次打开Message后再打开的Message无法关闭了,无论是使用showClose手动关闭还是通过duration来自动关闭,在第二次打开对应的组件的时候都无法关闭了,然而控制台也都没有报错
我的代码写法如下:
import { Message } from 'element-ui'
const message_conf = {
showClose: true,
message: '网络出错啦...',
type: 'error',
duration: 2000
}
//... some fn doing
Message(message_conf)
根据官网给出的demo:
this.$
版权声明:本文为qq_32593725原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。