mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-10 17:32:45 +08:00
19 lines
272 B
Vue
19 lines
272 B
Vue
<template>
|
|
</template>
|
|
|
|
<script>
|
|
import { setToken } from '@/utils/auth'
|
|
|
|
export default {
|
|
created() {
|
|
const {token} = this.$route.query;
|
|
setToken(token);
|
|
this.$router.push({ path: this.redirect || "/" }).catch(() => {});
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|