ElementUI GitHub地址
https://github.com/ElemeFE/element/
在某个组件中全局配置,只需要在mouted()钩子函数中写入
mounted() {
this.$message.config({
duration: 3
});
this.$notify.config({
duration: 3
});
}
在整个项目中全局配置,需要在main.js中写入
Vue.prototype.$message.config({
duration: 3
});
Vue.prototype.$notify.config({
duration: 3
});
网友评论