需要在挂载后获取 `ref` 值 import { ref, onMounted } from 'vue' import Comp from "./Comp.vue" const r = ref() onMounted(()=>{ console.log(r) })
阅读量:1
点赞量:0