You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
429 B
13 lines
429 B
import store from '@/store'
|
|
import storage from '@/utils/storage'
|
|
import platform from '@/core/platform'
|
|
import { ACCESS_TOKEN, USER_ID } from '@/store/mutation-types'
|
|
|
|
export default function Initializer() {
|
|
// 当前运行的终端
|
|
store.commit('SET_PLATFORM', platform)
|
|
// 用户认证token
|
|
store.commit('SET_TOKEN', storage.get(ACCESS_TOKEN))
|
|
// 当前用户ID
|
|
store.commit('SET_USER_ID', storage.get(USER_ID))
|
|
}
|
|
|