Vue3无法通过ref获取盒子的dom?

<script setup>
    import { onLoad } from "@dcloudio/uni-app"
    import { ref } from "vue"
    const test = ref()
    const toprintf = () => {
        console.log(test)
    }
    onLoad(() => {})
</script>

<template>
    <view ref="test">1111111111</view>
    <button @click="toprintf">打印</button>
</template>

<style lang="less" scoped></style>

image.png

为什么我不可以通过ref获取盒子的dom(vue3)

阅读 603
2 个回答

问题已解决:
image.png

你打印的时候 dom 还没渲染

试着在 vue 的 onMounted 函数中调用 toprintf

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏