Files
xian_vue_new/src/component/rain-earthquake/ControlShowDetailComponent.vue
T

17 lines
375 B
Vue
Raw Normal View History

<template>
<!-- 医院 -->
<HospitalComponent
v-if="
useStatusStore().appLoadingCompleted &&
useStatusStore().poiLayers.showHospital.loading
"
/>
</template>
<script lang="ts" setup>
import { useStatusStore } from '@/stores/useStatusStore';
import HospitalComponent from './HospitalComponent.vue';
</script>
<style scoped lang="less"></style>