Files
2022-01-01 16:14:33 +08:00

14 lines
222 B
Vue

<template>
<router-view v-slot="{ Component }">
<component :is="Component" />
</router-view>
</template>
<script>
import { defineComponent } from 'vue'
export default defineComponent({
name: 'App'
})
</script>