91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue3中怎么使用SFC和TSX調用子組件的函數

發布時間:2023-05-18 16:50:02 來源:億速云 閱讀:152 作者:iii 欄目:編程語言

這篇文章主要介紹“Vue3中怎么使用SFC和TSX調用子組件的函數”,在日常操作中,相信很多人在Vue3中怎么使用SFC和TSX調用子組件的函數問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue3中怎么使用SFC和TSX調用子組件的函數”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

1 子組件暴露方法

1.1 SFC(.vue)暴露方法

在使用 .vue 定義的組件中,setup 中提供了 defineExpose() 方法,該方法可以將組件內部的方法暴露給父組件。

創建子組件 demo-component-sfc.vue:

<template>
  <el-button type="primary" @click="demoFun('child')">demo component sfc</el-button>
</template>

<script lang="ts" setup name="demo-component-sfc">
const demoFun = (str: string) => {
  console.log('demo component sfc', str)
}
// 使用 defineExpose 暴露組件內部的方法
defineExpose({ demoFun })
</script>
1.2 TSX(.tsx)暴露方法

使用 .tsx 方式定義的組件,也是通過參數 context 中的 expose() 方法暴露組件內容的方法。

創建子組件 demo-component-tsx.tsx:

import { defineComponent } from 'vue'

export default defineComponent({
  name: 'demo-component-tsx',
  setup (props, context) {
    const demoFun = (str: string) => {
      console.log('demo component tsx', str)
    }

    // 使用 expose 暴露組件內部的方法
    context.expose({ demoFun })

    return () => (
      <el-button type="primary" onClick={() => demoFun('child')}>demo component tsx</el-button>
    )
  }
})

2 父組件調用子組件中的方法

2.1 SFC(.vue)調用

在 .vue 文件中獲取組件引用首先定義一個 ref 變量,然后為子組件設置 ref 屬性。ref 屬性值與變量名要保持一致。

import { defineComponent } from 'vue'

export default defineComponent({
  name: 'demo-component-tsx',
  setup (props, context) {
    const demoFun = (str: string) => {
      console.log('demo component tsx', str)
    }

    // 使用 expose 暴露組件內部的方法
    context.expose({ demoFun })

    return () => (
      <el-button type="primary" onClick={() => demoFun('child')}>demo component tsx</el-button>
    )
  }
})

如上面的代碼所示:第一個子組件的 ref 屬性值為 sfcRef,定義的變量名也是 sfcRef。在父組件中便可以使用 sfcRef 調用子組件的 demoFun 方法了。

2.2 TSX(.tsx)調用

在 .tsx 中獲取組件的引用更簡單,首先定義一個 ref 變量,然后將該變量設置給子組件的 ref 屬性即可。

import { defineComponent, ref } from 'vue'
import DemoComponentSfc from '@/components/ref/demo-component-sfc.vue'
import DemoComponentTsx from '@/components/ref/demo-component-tsx'

export default defineComponent({
  name: 'demo-ref-tsx',
  setup () {
    const sfcRef = ref()

    const onBtnClick1 = () => {
      if (sfcRef.value) {
        sfcRef.value && sfcRef.value.demoFun('parent')
      }
    }

    const tsxRef = ref()

    const onBtnClick2 = () => {
      if (tsxRef.value) {
        tsxRef.value && tsxRef.value.demoFun('parent')
      }
    }
    return () => (
      <>
        <div>
          <DemoComponentSfc ref={sfcRef} />
          <el-button onClick={onBtnClick1}>parent button</el-button>
        </div>

        <div >
          <DemoComponentTsx ref={tsxRef} />
          <el-button onClick={onBtnClick2}>parent button</el-button>
        </div>
      </>
    )
  }
})

兩者實現效果一致:

Vue3中怎么使用SFC和TSX調用子組件的函數

到此,關于“Vue3中怎么使用SFC和TSX調用子組件的函數”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赤水市| 山阳县| 三门县| 腾冲县| 资阳市| 利川市| 铁岭县| 神池县| 孙吴县| 孟连| 东莞市| 南召县| 崇左市| 鄯善县| 通山县| 康平县| 昌都县| 含山县| 江安县| 鹤庆县| 克山县| 和平县| 宣汉县| 邯郸县| 磴口县| 乌拉特前旗| 阿鲁科尔沁旗| 修武县| 襄汾县| 怀远县| 紫阳县| 田阳县| 屯留县| 宁远县| 海原县| 咸宁市| 拉孜县| 金湖县| 汶上县| 太原市| 兖州市|