1、this.$nextTick,替换方案如下:
import { nextTick} from "vue";
nextTick(function() {})
2、uni.createSelectorQuery().in(this),其他相似api需要this应该也是一样的,替换方案如下:
uniapp文档示例(选择组合式api):https://uniapp.dcloud.net.cn/api/ui/nodes-info.html#selectorquery-in
import { getCurrentInstance } from "vue";
const instance = getCurrentInstance();
const that = instance.proxy;
const query = uni.createSelectorQuery().in(that);
评论区”朱小“的发问,加.in(that)和不加的区别。以下是查找到的内容,仅供参考:

3、子组件使用this.$parent,替换方案:props、provide/inject、emits或事件总线
4、子组件使用this.$root.$on("hook:onShow", () => {...相关逻辑})监听父组件onShow生命周期,替换方案如下:
import { onShow } from "@dcloudio/uni-app";
onShow(() => {
...相关逻辑
})