zb-admin/src/views/echarts/migrationMap/index.vue

15 lines
397 B
Vue

<template>
<div class="echarts-map">
<el-card class="info">Echarts 实现飞线图地图增加图标高亮</el-card>
<migration-charts height="100%" width="100%" id="migration" />
</div>
</template>
<script setup lang="ts">
import MigrationCharts from '@/components/DataScreen/migrationEcharts/index.vue'
</script>
<style lang="scss" scoped>
@import "./index.scss";
</style>