vitesse/src/App.vue

21 lines
515 B
Vue
Raw Normal View History

<script setup lang="ts">
import { useHead } from '@vueuse/head'
// https://github.com/vueuse/head
// you can use this to manipulate the document head in any components,
// they will be renedered correctly in the html results with vite-ssg
useHead({
title: 'Vitesse',
meta: [
{ name: 'description', content: 'Opinionated Vite Starter Template' },
],
})
</script>
2020-08-10 02:43:04 +08:00
<template>
2020-12-21 17:48:15 +08:00
<main class="px-4 py-10 text-center text-gray-700 dark:text-gray-200">
2020-08-10 02:43:04 +08:00
<router-view />
<Footer />
2020-12-21 17:48:15 +08:00
</main>
2020-08-10 02:43:04 +08:00
</template>