weizhuozhongzhi/src/App.vue

35 lines
558 B
Vue
Raw Normal View History

2026-02-10 15:11:41 +08:00
<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>