Last active
January 19, 2019 15:41
-
-
Save sanath-kumar/0ed971a0e40b675d406ab9b606865ed4 to your computer and use it in GitHub Desktop.
#vuex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import Vuex from 'vuex' | |
Vue.use(Vuex); | |
export const store = new Vuex.Store({ | |
state: {}, | |
getters : {}, | |
mutations: {}, | |
actions : {} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment