<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>