35 lines
558 B
Vue
35 lines
558 B
Vue
<template>
|
|
<div class="app">
|
|
<nav-bar />
|
|
<router-view></router-view>
|
|
<app-footer />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import NavBar from './components/Navbar.vue'
|
|
import AppFooter from './components/AppFooter.vue'
|
|
import { useLoadingStore } from './stores/loading'
|
|
|
|
const loadingStore = useLoadingStore()
|
|
</script>
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.app {
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|