YZL_zyzl
YZL_zyzl
  • 发布:2024-04-12 11:03
  • 更新:2024-04-12 11:04
  • 阅读:78

nvue vue3 不支持 uni.createSelectorQuery 为何写了又生效?所以到底能不能用

分类:nvue
onMounted(() => {  
  const instance = getCurrentInstance();  
  const query = uni.createSelectorQuery().in(instance);  
  query  
    .select('#hw')  
    .boundingClientRect((res) => {  
      console.log(res);  
    })  
    .exec();  
});
2024-04-12 11:03 负责人:无 分享
已邀请:
YZL_zyzl

YZL_zyzl (作者)

根据文档写完了,然后读到 nvue不支持,支持不支持写在最上面不行吗

要回复问题请先登录注册