vue3的api解读 - ref和expose

目录

ref引用组件

expose暴露方法


父子组件交互能力

ref引用组件

  • ref是vue的一种reactive值
    • 代表的是一个引用
    • 例如:引用某个数值、对象......
    • 例如:引用某个组件
  • Coding
import { defineComponent, ref, watch } from "vue"
export const ExposeExamplese01 = defineComponent({
  setup() {
    const ipt = ref<HTMLInputElement | null>(null)
    watch(ipt, () => {
      if (ipt.value) {
        ipt.value.value = "hello"
        ipt.value.focus()
      }
    })
    return () => {
      return <input ref={ipt} />
    }
  }
})

expose暴露方法

import { defineComponent, ref, watch } from "vue"
export const ExposeExamplese02 = defineComponent({
  setup() {
    const someRef = ref<any>(null)
    watch(someRef, () => {
      if (someRef.value) {
        // console.log(someRef.value) // A <div>A组件</div>
        console.log(someRef.value) // B Proxy {…}
        console.log(someRef.value.div) // B <div>B组件</div>
      }
    })
    return () => {
      // return <A ref={someRef} />
      return <B ref={someRef} />
    }
  }
})
const A = () => {
  return <div>A组件</div>
}
const B = defineComponent({
  setup(props, { expose }) {
    const divRef = ref<HTMLDivElement | null>(null)
    expose({
      foo: "bar",
      text() {
        console.log('text me!')
      },
      div: divRef
    })
    return () => {
      return <div ref={divRef}>B组件</div>
    }
  }
})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值