App.vue 659 B

1234567891011121314151617181920212223242526
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-01-07 09:49:29
  4. * @LastEditTime: 2021-11-01 14:08:55
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \vue3-element-admin\src\App.vue
  8. -->
  9. <template>
  10. <section class="app-main">
  11. <router-view v-slot="{ Component, route }" :key="key">
  12. <component :is="Component" :key="route.fullPath" />
  13. </router-view>
  14. </section>
  15. </template>
  16. <script setup>
  17. import { ref, computed } from "vue";
  18. import { useRoute } from "vue-router";
  19. const route = useRoute();
  20. const key = computed(() => {
  21. return route.path + Math.random();
  22. });
  23. </script>
  24. <style lang="scss" scoped></style>