added db migrations for users and initial data added first controllers added auth middleware added rest routes and controller stub ...
13 lines
144 B
Vue
13 lines
144 B
Vue
<template>
|
|
<div>
|
|
Willkommen auf der Hauptseite
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
defineProps({
|
|
test: String,
|
|
})
|
|
|
|
</script> |