<script setup>
import {
getCurrentInstance,
ref
} from "vue";
import {
onLoad,
onReady
} from '@dcloudio/uni-app'
function getTopHeight() {
console.log('获取节点',uni.$u.getRect); // 打印结果为undefined
/*proxy.$uGetRect('.bg-top').then(res => { // 通过getCurrentInstance中的proxy能拿到$uGetRect并使用
// console.log('bg-top节点', res);
navHeight.value = res.height
console.log(navHeight.value);
})*/
}
onReady(() => {
getTopHeight()
})
</script>
应该如何才能像官方文档中那样去使用呢
0 个回复