Newer
Older
urbanLifeline_YanAn / src / views / oneMap / BIM / Tunnel.vue
@zhangqy zhangqy on 14 Oct 285 bytes 创建隧道BIM文件夹
<template>
  <div id="Tunnel">隧道BIM</div>
</template>

<script setup name="Tunnel">
import { ref, reactive, toRefs, onMounted } from "vue";
const AllData = reactive({});
onMounted(() => {});
</script>

<style lang="scss" scoped>
#Tunnel {
  width: 100%;
  height: 100%;
}
</style>