This commit is contained in:
dyz 2020-12-05 03:55:49 -08:00 committed by GitHub
commit 1c32d85fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ const actions = {
// user logout
logout({ commit, state, dispatch }) {
return new Promise((resolve, reject) => {
logout(state.token).then(() => {
logout().then(() => {
commit('SET_TOKEN', '')
commit('SET_ROLES', [])
removeToken()