AppMain.vue 224 B

1234567891011
  1. <template>
  2. <section ref="appMain" class="app-main">
  3. <router-view :key="route.path"/>
  4. </section>
  5. </template>
  6. <script lang="ts" setup>
  7. import {RouterView, useRoute} from 'vue-router'
  8. let route = useRoute()
  9. </script>