racemash/src/App.vue

12 lines
183 B
Vue
Raw Normal View History

2023-05-23 08:19:09 +02:00
<template>
<v-app>
<v-main>
<HelloWorld />
</v-main>
</v-app>
</template>
<script setup lang="ts">
import HelloWorld from '@/components/HelloWorld.vue'
</script>