首先我知道 uniapp中$refs只能在h5端正常使用,其他地方是不能拿到内置实例的
我测试过通过 export default 的传统写法 通过this.$refs可以拿到 自定义组件的dom,但是在setup中就不行
代码如下
<template>
<abc ref='abc'></abc>
</template>
<script setup>
import { onMounted, ref } from 'vue'
let abc = ref()
onMounted(() => {
console.log(abc.value);
})
</script>
<style>
</style>
微信小程序返回的结果是 null
请问如何在微信小程序 setup中拿到dom实例?