2022-08-12 18:26:27 +08:00

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>