Refactor frontend to route-based navigation with vue-router, add system setup and login pages with API integration. Add structured logging, access-log middleware and startup lifecycle to FastAPI backend.
18 lines
400 B
Vue
18 lines
400 B
Vue
<template>
|
|
<RouterView />
|
|
<ToastNotification :toast-text="toastText" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import { RouterView } from 'vue-router'
|
|
|
|
import './assets/styles/global.css'
|
|
|
|
import ToastNotification from './components/shared/ToastNotification.vue'
|
|
import { useToast } from './composables/useToast.js'
|
|
|
|
const { toastText } = useToast()
|
|
</script>
|
|
|
|
<style src="./assets/styles/app.css"></style>
|