mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 08:26:37 +08:00
18 lines
225 B
Vue
18 lines
225 B
Vue
<script setup lang="ts">
|
|
import { Amap } from "@/components/ReMap";
|
|
|
|
defineOptions({
|
|
name: "MapPage"
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Amap />
|
|
</template>
|
|
|
|
<style scoped>
|
|
.main-content {
|
|
margin: 2px 0 0 !important;
|
|
}
|
|
</style>
|