import { onMounted, ref, shallowRef, watch, nextTick } from 'vue'
const myMap = shallowRef({})
const initMap = () => {
myMap.value = new ymaps.Map('map', {
center: actualCity.value.coords,
zoom: 12,
controls: []
}, {
searchControlProvider: 'yandex#search'
})
}
import { onMounted, ref, shallowRef, watch, nextTick } from 'vue'
const myMap = shallowRef({})