zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;