feat:新增景区页面

This commit is contained in:
zjc
2024-12-17 18:18:07 +08:00
parent 5e5ce522db
commit 1108aafed4
22 changed files with 1061 additions and 126 deletions

View File

@@ -1,9 +1,17 @@
<script setup>
import { RouterView } from 'vue-router'
import { RouterView } from 'vue-router'
</script>
<template>
<RouterView />
<main class="wrapper"> <RouterView /> </main>
</template>
<style scoped></style>
<style scoped>
.wrapper {
display: flex;
width: 100vw;
height: 100vh;
overflow: hidden;
background-color: #0a254b;
}
</style>