15 lines
311 B
Vue
15 lines
311 B
Vue
<template>
|
|
<Pin
|
|
v-for="item, index in point.items"
|
|
:key="index"
|
|
:position="item"
|
|
:image="pois[index]"/>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { usePointStore } from '/@/stores/point'
|
|
import Pin from '/@/components/Pin.vue'
|
|
import pois from '/@/assets/poi'
|
|
|
|
const point = usePointStore()
|
|
</script> |