2021-02-05 09:34:09 +08:00
|
|
|
<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,
|
2021-02-22 16:17:59 +08:00
|
|
|
// they will be rendered correctly in the html results with vite-ssg
|
2021-02-05 09:34:09 +08:00
|
|
|
useHead({
|
|
|
|
title: 'Vitesse',
|
|
|
|
meta: [
|
|
|
|
{ name: 'description', content: 'Opinionated Vite Starter Template' },
|
|
|
|
],
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2020-08-10 02:43:04 +08:00
|
|
|
<template>
|
2021-02-12 12:55:19 +08:00
|
|
|
<router-view />
|
2020-08-10 02:43:04 +08:00
|
|
|
</template>
|