aboutsummaryrefslogtreecommitdiff
path: root/src/site/plugins/notifier.js
blob: f37b96e48d8fa617ae3e514b8726a87384d5576f (plain) (blame)
1
2
3
4
5
6
7
export default ({ store }, inject) => {
	inject('notifier', {
		showMessage({ content = '', type = '' }) {
			store.commit('alert/set', { content, type });
		},
	});
};