DESKTOP-U9PSNEI\chunfen f9ddd2af62 feat: #20220802 yu
2022-08-02 10:16:07 +08:00

20 lines
268 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
import { getToken } from '@/util/auth'
export default {
created () {
if (!getToken()) {
this.$router.push({ name: 'logo' })
}
}
}
</script>
<style lang="scss">
</style>