This repository has been archived on 2024-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
enzos-events/resources/js/pages/Home.vue
Sockenklaus a52c0143df Added database, orm, auth modules
added db migrations for users and initial data
added first controllers
added auth middleware
added rest routes and controller stub
...
2023-07-03 16:24:19 +02:00

13 lines
144 B
Vue

<template>
<div>
Willkommen auf der Hauptseite
</div>
</template>
<script setup>
defineProps({
test: String,
})
</script>