21 lines
917 B
JavaScript
21 lines
917 B
JavaScript
|
|
||
|
export default {
|
||
|
token: state => state.app.token,
|
||
|
isLogin: state => !!state.app.token,
|
||
|
backgroundColor: state => state.app.backgroundColor,
|
||
|
globalData: state => state.app.globalData,
|
||
|
userInfo: state => state.app.userInfo || {},
|
||
|
uid:state => state.app.uid,
|
||
|
homeActive: state => state.app.homeActive,
|
||
|
home: state => state.app.home,
|
||
|
copyPwd: state => state.app.copyPwd,
|
||
|
viewColor: state => state.app.viewColor,
|
||
|
keyColor: state => state.app.keyColor,
|
||
|
};
|
||
|
// export default {
|
||
|
// token: state => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJrYWlmYS5jcm1lYi5uZXQiLCJhdWQiOiJrYWlmYS5jcm1lYi5uZXQiLCJpYXQiOjE1NzcwODM1MzQsIm5iZiI6MTU3NzA4MzUzNCwiZXhwIjoxNTc3MDk0MzM0LCJqdGkiOnsiaWQiOjExMCwidHlwZSI6InVzZXIifX0.U-i1pbdRjyXI1gr79Uq2XBPZ89T8f5Ai9jwrR8woTwE',
|
||
|
// isLogin: state => true,
|
||
|
// backgroundColor: state => state.app.backgroundColor,
|
||
|
// userInfo: state => state.app.userInfo || {}
|
||
|
// };
|