zsqy-naive-ui/src/layout/components/Main/index.vue

8 lines
177 B
Vue
Raw Normal View History

2024-01-05 17:28:54 +08:00
<template>
<router-view>
<template #default="{ Component, route }">
<component :is="Component" :key="route.fullPath" />
</template>
</router-view>
</template>