From d146485c7420fbbdddada97361fe26e4ed1af023 Mon Sep 17 00:00:00 2001 From: Alex Voevoda Date: Sat, 30 Sep 2017 22:24:18 +0300 Subject: [PATCH] fix mutations import --- template/src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/src/store/index.js b/template/src/store/index.js index 01be7207..ff0314b1 100644 --- a/template/src/store/index.js +++ b/template/src/store/index.js @@ -2,7 +2,7 @@ import Vue from 'vue' import Vuex from 'vuex' import * as getters from './getters' -import * as mutations from './mutations' +import mutations from './mutations' import * as actions from './actions' Vue.use(Vuex);