website/src/App.vue
2024-04-01 19:39:41 +03:30

16 lines
216 B
Vue

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