- backend: userLogin auto-registers missing users and returns auto_registered - frontend: add responsive auth page (login + signup flow via userLogin) with light/dark mode and logo - i18n: wire language switching, add translations for cs/en/es/de - ui/tooling: add Font Awesome integration
8 lines
116 B
Vue
8 lines
116 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|
|
|
|
<template>
|
|
<RouterView />
|
|
</template>
|