mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 22:50:44 +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>
|