17 lines
375 B
Vue
17 lines
375 B
Vue
|
|
<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>
|