Files
hereconnect/src/views/HomeView.vue
T

10 lines
151 B
Vue
Raw Normal View History

2024-11-07 14:13:39 +02:00
<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
</main>
</template>