Newer
Older
urbanLifeline_YanAn / src / views / DialogTabs / component / streetscape.vue
@鲁yixuan 鲁yixuan on 17 Oct 392 bytes 添加弹框
<template>
  <div id="streetscape">11111</div>
</template>

<script setup name="streetscape">
import { ref, reactive, toRefs, onMounted } from 'vue';
import bus from '@/bus';
const { proxy } = getCurrentInstance();

onMounted(() => {});
onBeforeUnmount(() => {
  bus.off('xxinformationList');
});
</script>

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