raffle-me-that/src/App.vue
Norman Köhring 1645b3be50 initial
2023-01-04 11:26:59 +01:00

11 lines
188 B
Vue

<script setup lang="ts">
import { useHead } from '@vueuse/head'
useHead({
titleTemplate: title => `${title} ̣ Raffle Me That!`,
})
</script>
<template>
<router-view />
</template>