Newer
Older
smartwell_front / src / views / home / alarm / current / components / map.vue
<!--
  Description: 报警管理-报警地图
  Author: 李亚光
  Date: 2023-07-08
 -->
<script lang="ts" setup name="AlarmMap">
import AMap from '@/components/map/index.vue'
const $props = defineProps({
  height: {
    type: Number,
    default: 0,
  },
})
</script>

<template>
  <div :style="`height: ${$props.height}px`" class="map-container">
    <a-map />
  </div>
</template>

<style lang="scss" scoped>
.map-container {
  width: 100%;
}
</style>