30 lines
779 B
Vue
30 lines
779 B
Vue
<template>
|
|
<router-view />
|
|
<NotificationDisplay /> <!-- For custom notifications -->
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import NotificationDisplay from '@/components/global/NotificationDisplay.vue';
|
|
// Potentially initialize offline store or other global listeners here if needed
|
|
// import { useOfflineStore } from './stores/offline';
|
|
// const offlineStore = useOfflineStore();
|
|
// offlineStore.init(); // If you move init logic here
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
body {
|
|
margin: 0;
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: #2c3e50;
|
|
background-color: #f0f2f5;
|
|
/* Example background */
|
|
}
|
|
|
|
#app {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
</style> |