gohttpdUi/src/layout/Layout.vue

10 lines
208 B
Vue
Raw Normal View History

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