vitesse/src/layouts/default.vue
John Campion Jr 83225032d0
feat: support layouts (#56)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2021-02-12 12:55:19 +08:00

10 lines
236 B
Vue

<template>
<main class="px-4 py-10 text-center text-teal-700 dark:text-gray-200">
<router-view />
<Footer />
<div class="mt-5 m-auto text-center opacity-25 text-sm">
[Default Layout]
</div>
</main>
</template>