13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
const getters = {
|
|
tokenKey: state => state.token,
|
|
info: state => state.info,
|
|
htpUrl: state => state.htpUrl,
|
|
getProjectItem:state => state.projectItem,
|
|
xmbm:state => state.xmbm,
|
|
xmmc:state => state.xmmc,
|
|
gclx:state => state.gclx,
|
|
username:state => state.username,
|
|
company:state => state.company,
|
|
userId:state => state.userId
|
|
}
|
|
export default getters |