18 lines
549 B
JavaScript
18 lines
549 B
JavaScript
const getters = {
|
|
device: state => state.app.device,
|
|
theme: state => state.app.theme,
|
|
color: state => state.app.color,
|
|
token: state => state.user.token,
|
|
avatar: state => state.user.avatar,
|
|
nickname: state => state.user.name,
|
|
welcome: state => state.user.welcome,
|
|
roles: state => state.user.roles,
|
|
userInfo: state => state.user.info,
|
|
addRouters: state => state.permission.addRouters,
|
|
routers: state => state.permission.routers,
|
|
multiTab: state => state.app.multiTab,
|
|
lang: state => state.i18n.lang
|
|
}
|
|
|
|
export default getters
|