123456789101112131415161718192021222324 |
- <template>
- <router-view v-slot="{ Component }">
- <keep-alive>
- <component :is="Component" />
- </keep-alive>
- </router-view>
- </template>
- <script setup>
-
- function resize() {
- let fs = document.body.clientWidth / 10;
-
-
-
-
-
-
-
- document.body.parentNode.style = "font-size: " + fs + "px;";
- }
-
-
- </script>
|