2025-05-27 19:01:22 +08:00
|
|
|
<script setup>
|
|
|
|
|
import {onMounted} from "vue";
|
|
|
|
|
import {toPath} from "./utils/index.js";
|
|
|
|
|
import {useSystemStore} from "./pinia/SystemStore/index.js";
|
|
|
|
|
|
|
|
|
|
const SystemStore = useSystemStore();
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
toPath(SystemStore.NOW_ROUTER, SystemStore.NOW_ROUTER_QUERY);
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2025-02-27 13:46:35 +08:00
|
|
|
|
|
|
|
|
<template>
|
2025-03-10 19:01:21 +08:00
|
|
|
<a-config-provider>
|
2025-02-28 09:56:01 +08:00
|
|
|
<router-view></router-view>
|
|
|
|
|
</a-config-provider>
|
2025-02-27 13:46:35 +08:00
|
|
|
</template>
|
|
|
|
|
|
2025-02-27 14:38:47 +08:00
|
|
|
<style scoped></style>
|