vue3 版本时 在组件内使用 uni.createSelectorQuery().in(this) 时 this怎么获取,从getCurrentInstance 里获取的不好使
l***@163.com
- 发布:2023-03-14 01:08
- 更新:2023-03-16 09:58
- 阅读:492
赵永强 - 前端老菜鸟
const editorCtx = ref(null);
const onEditorReady = () => {
uni.createSelectorQuery()
.select('#editor')
.context(res => {
editorCtx.value = res.context;
})
.exec();
};
是类似于这种吗?
l***@163.com (作者)
就是这种,在组件内不传.in(this)选择范围不好使,传getCurrentInstance 也不好使,
2023-03-14 10:51