10 lines
208 B
Vue
10 lines
208 B
Vue
|
<script setup lang="ts"></script>
|
||
|
|
||
|
<template>
|
||
|
<section>
|
||
|
<router-view v-slot="{ Component, route }">
|
||
|
<component :is="Component" :key="route.fullPath" />
|
||
|
</router-view>
|
||
|
</section>
|
||
|
</template>
|