This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-15 10:23:53 -07:00
|
|
|
export default ({app, store}) => {
|
|
|
|
const token = app.$cookies.get('token');
|
|
|
|
if (token) {
|
|
|
|
store.commit('setToken', token);
|
|
|
|
if (!store.state.token) {
|
|
|
|
app.$cookies.removeAll();
|
2020-10-15 09:50:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|