2024-06-13 14:31:40 +08:00
|
|
|
|
2024-05-22 08:44:08 +08:00
|
|
|
<script setup lang="ts">
|
2024-05-22 10:22:28 +08:00
|
|
|
import "virtual:svg-icons-register";
|
2024-05-22 08:44:08 +08:00
|
|
|
import { RouterView } from 'vue-router'
|
|
|
|
|
2024-06-13 14:31:40 +08:00
|
|
|
import { getLocalStorage,setToken } from "@/utils";
|
|
|
|
// setInterval(()=>{
|
|
|
|
// console.log('1111111','修改token');
|
|
|
|
// setToken(1111111111)
|
|
|
|
// },60000)
|
2024-05-22 08:44:08 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<RouterView />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|