vue / src /views /HomeView.vue
coyotte508
Vue template
71577fb
raw
history blame contribute delete
151 Bytes
<script setup lang="ts">
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
</main>
</template>