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 | |
import Vue from 'vue'; | |
export default { | |
state: { | |
cart: ["bread", "rice", "beans", "turkey"] | |
}, | |
getters: { | |
// Fetch the total number of items in the cart |
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' | |
import state from './state' | |
import getters from './getters' | |
import mutations from './mutations' | |
import actions from './actions' | |
import cart from './modules/cart' | |
Vue.use(Vuex) |
OlderNewer