import {CART_NUM} from '@/config/cache'; import Cache from '@/utils/cache'; export default { namespaced: true, state: { cartNum: Cache.get(CART_NUM) || 0 }, getters: {}, mutations: { setCartNum(state, data) { Cache.set(CART_NUM, data); state.cartNum = data; } } }