Files
hongshu-web/src/App.vue

15 lines
303 B
Vue
Raw Normal View History

2024-07-03 16:56:33 +08:00
<template>
<router-view :key="routerKey"></router-view>
</template>
<script setup lang="ts">
import { useRoute } from "vue-router";
import { computed } from "vue";
const route = useRoute();
const routerKey = computed(() => {
return route.path + Math.random();
});
</script>
<style scoped></style>