vue3-模板引用

发布时间:2024年01月14日
//1.调用ref函数 -> ref对象
const h1Ref = ref(null)
const comRef = ref(null)
//组件挂载完毕之后才能获取
onMounted(()=>{
  console.log(h1Ref.value);
  console.log(comRef.value);
})
  <div class="father">
    <!-- 通过ref标识绑定ref对象 -->
    <h2 ref="h1Ref">父组件</h2>
    <HelloWorldVue :count="count" message="father message" @get-message="getMessage" ref="comRef"></HelloWorldVue>
  </div>

绑定之后结果

在这里插入图片描述
默认情况下在

子组件中

const name = ref('test name')
defineExpose({
  name
})

在这里插入图片描述

文章来源:https://blog.csdn.net/m0_47002684/article/details/135585894
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。