18 lines
257 B
Vue
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>
|