18 lines
414 B
Vue
18 lines
414 B
Vue
<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 rendered correctly in the html results with vite-ssg
|
|
useHead({
|
|
title: 'Vitesse',
|
|
meta: [
|
|
{ name: 'description', content: 'Opinionated Vite Starter Template' },
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|