vitesse/src/App.vue

18 lines
414 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,
2021-02-22 16:17:59 +08:00
// they will be rendered 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>
<router-view />
2020-08-10 02:43:04 +08:00
</template>