import { setStore, getStore, removeStore } from '@/util/store' import website from '@/config/website' const dataL = { state: { dataLa: null, showdataL: false, }, mutations: { SET_DATAL: (state, dataLa) => { state.dataLa = dataLa; }, SET_SHOWDATAL: (state, isit) => { state.showdataL = isit; }, } } export default dataL;