website/src/App.vue
2024-03-29 23:23:37 +03:30

17 lines
No EOL
248 B
Vue

<template>
<router-view />
</template>
<script lang="ts">
import { defineComponent } from "vue";
import { useHead } from 'unhead'
export default defineComponent({
name: "App",
data() {
return {
title: "",
};
},
});
</script>