【发布时间】:2018-01-20 12:01:20
【问题描述】:
我正在创建一个小型 Vue 插件,允许用户从任何组件中添加“页面通知”。我已经成功实现了类似的东西:
this.$notifications.add("a message");
而且它有效!但是我必须注册我的插件所需的突变和操作,作为为我的应用程序设置商店其余部分的文件的一部分:
export default new Vuex.Store({...})
有没有办法从我的插件中向我的商店添加操作和突变?目前看起来是这样的:
import vuex from './../store';
const MyPlugin = {
install(Vue, options) {
// 4. add an instance method
Vue.prototype.$notifications =
{
notificationTypes: {
0: "warning",
1: "info"
},
add: function (options) {
let id = "page-notification-" + (vuex.state.pageNotificationsCreated + 1);
let message = options.message || options || "no message";
let notificationType = this.notificationTypes[0];
if(options.notificationType && Number.isInteger(options.notificationType)){
// Map int to string type
notificationType = this.notificationTypes[options.notificationType] || notificationType;
}else{
// Or use string we were provided ;)
notificationType = options.notificationType;
}
let notification = { id: id, message: message, notificationType: notificationType };
vuex.dispatch('addNotification', notification);
}
}
}
};
export default MyPlugin;
感谢您的任何帮助!
【问题讨论】:
标签: javascript vue.js vuejs2 vuex