gd-earth/src/components/LocatingPoint.vue

10 lines
210 B
Vue

<template>
<Pin :position="position" />
</template>
<script setup>
import Pin from '/@/components/Pin.vue'
import { usePositionStore } from '/@/stores/position'
const position = usePositionStore()
</script>