"use strict"; var common_vendor = require("../../common/vendor.js"); const cate = { state: { cate_history: common_vendor.index.getStorageSync("cate_history") ? common_vendor.index.getStorageSync("cate_history") : [] }, mutations: { SET_CATE_HISTORY: (state, value) => { state.cate_history = value; common_vendor.index.setStorageSync("cate_history", state.cate_history); } }, actions: {} }; exports.cate = cate;