FastAuth/frontend/src/App.vue

16 lines
253 B
Vue
Raw Normal View History

2024-06-10 15:10:22 +00:00
<script setup>
import HelloWorld from "./components/HelloWorld.vue";
</script>
<template>
<div>
<header>
<div class="wrapper">
<HelloWorld msg="You did it!" />
</div>
</header>
</div>
</template>
<style scoped></style>