mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
25 lines
285 B
Vue
25 lines
285 B
Vue
<template>
|
|
<div class="map">
|
|
<Amap />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Amap } from "/@/components/ReMap";
|
|
export default {
|
|
components: {
|
|
Amap
|
|
},
|
|
setup() {
|
|
return {};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.map {
|
|
width: 100%;
|
|
height: 89vh;
|
|
}
|
|
</style>
|