1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <template>
| <div class="navBox"></div>
| </template>
|
| <script lang="ts" setup>
| import router from "@/router";
| import { ref, onMounted, reactive, defineProps, defineEmits, watch } from "vue";
| </script>
| <style lang="less" scoped>
| .navBox {
| height: 100%;
| width: 100%;
| background-color: #30bcff;
| box-shadow: 0 2px 3px rgba(16, 133, 80, 0.5);
| border-bottom: 1px solid #30bcff;
| }
| </style>
|
|