基于北京SDK的方案预演功能
suerprisePlus
2024-06-13 28de79b44655118b1deffb5c9a8b06ec2904905b
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>