2023-02-18 10:45:10 +08:00

18 lines
257 B
Vue

<script lang="ts">
export default {
data() {
return {
pages: [],
}
},
}
</script>
<template>
<main class="text-gray-700 dark:text-gray-200 min-h-screen flex flex-col">
<Nav />
<RouterView />
<Footer />
</main>
</template>