AIzhushou-screen/src/App.vue

20 lines
336 B
Vue
Raw Normal View History

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'
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>