import { getCurrentInstance } from 'vue'
const { proxy } = getCurrentInstance()
const mapContext = uni.createMapContext('map', proxy)
mapContext.moveToLocation({
success: (res) => {
uni.showToast({
title: '成功' + res,
})
},
fail: (err) => {
console.log('err', err);
uni.showToast({
title: '失败' + err
})
}
})
2 个回复
8***@qq.com - 小前端一枚
我也有这个问题, 巨奇怪
超级无敌APP
请问你的nvue是用的vue3 setup语法糖写法吗? 他支不支持any