Skip to content

Instantly share code, notes, and snippets.

@c0depanda
Last active January 6, 2019 02:17
Show Gist options
  • Save c0depanda/bfab9c3bf117754fb96ac59d2a4dde7c to your computer and use it in GitHub Desktop.
Save c0depanda/bfab9c3bf117754fb96ac59d2a4dde7c to your computer and use it in GitHub Desktop.
// import Vue
import Vue from 'vue';
// import Vuex
import Vuex from 'vuex';
// Install the Vuex plugin on vue
Vue.use(Vuex);
// create a Vuex store instance
export const store = new Vuex.Store({
state: {
cart: ''
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment