智慧农业大数据平台
xiebin
2022-11-16 3dc278f10a4c3e3db7ce3a445bed710bdc88916e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-07-29 15:11:35
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2022-08-05 11:47:57
 * @FilePath: \zhny-dsj\src\store\modules\user.js
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 */
 
const user = {
    state: {
        user: null
    },
    mutations: {
        setUser (state, user) {
            state.user = user
        }
    },
    actions: {
 
    }
}
 
export default user