mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
20 lines
268 B
Vue
20 lines
268 B
Vue
<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>
|