crishellco/vue-call-store

View on GitHub
demo/src/store/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import Vue from 'vue';
import Vuex from 'vuex';

Vue.use(Vuex);

export default new Vuex.Store({
  state: {},
  mutations: {},
  actions: {},
  modules: {},
});