18 lines
287 B
Vue
18 lines
287 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: "Login" });
|
|
// }
|
|
// },
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss"></style>
|