| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div id="app">
- <Nav />
- <div class="content">
- <router-view />
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import Nav from '@/components/Nav.vue';
- </script>
- <style scoped lang="scss">
- #app {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- }
- .content {
- flex: 1;
- overflow-y: auto;
- overflow-x: hidden;
- }
- @font-face {
- font-family: 'YouSheBiaoTiYuan';
- src: url('@/assets/fonts/YouSheBiaoTiYuan.otf');
- }
- @font-face {
- font-family: 'DINAlternate';
- src: url('@/assets/fonts/DINAlternate-Bold.ttf');
- }
- </style>
|