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)

阅读 600
2 个回答

问题已解决:
image.png

你打印的时候 dom 还没渲染

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

推荐问题
宣传栏