您好,登錄后才能下訂單哦!
今天小編給大家分享一下怎么使用Vue3 SFC和TSX方式調(diào)用子組件中的函數(shù)的相關(guān)知識點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
在開發(fā)中會遇到這樣的需求:獲取子組件的引用,并調(diào)用子組件中定義的方法。如封裝了一個(gè)表單組件,在父組件中需要調(diào)用這個(gè)表單組件的引用,并調(diào)用這個(gè)表單組件的校驗(yàn)表單函數(shù)或重置表單函數(shù)。要實(shí)現(xiàn)這個(gè)功能,首先要在子組件中暴露父組件需要調(diào)用的函數(shù),然后去父組件中獲取子組件的引用,最后通過子組件的引用調(diào)用子組件暴露的方法。
在使用 .vue 定義的組件中,setup 中提供了 defineExpose() 方法,該方法可以將組件內(nèi)部的方法暴露給父組件。
創(chuàng)建子組件 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 暴露組件內(nèi)部的方法 defineExpose({ demoFun }) </script>
使用 .tsx 方式定義的組件,也是通過參數(shù) context 中的 expose() 方法暴露組件內(nèi)容的方法。
創(chuàng)建子組件 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 暴露組件內(nèi)部的方法 context.expose({ demoFun }) return () => ( <el-button type="primary" onClick={() => demoFun('child')}>demo component tsx</el-button> ) } })
在 .vue 文件中獲取組件引用首先定義一個(gè) ref 變量,然后為子組件設(shè)置 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 暴露組件內(nèi)部的方法 context.expose({ demoFun }) return () => ( <el-button type="primary" onClick={() => demoFun('child')}>demo component tsx</el-button> ) } })
如上面的代碼所示:第一個(gè)子組件的 ref 屬性值為 sfcRef,定義的變量名也是 sfcRef。在父組件中便可以使用 sfcRef 調(diào)用子組件的 demoFun 方法了。
在 .tsx 中獲取組件的引用更簡單,首先定義一個(gè) ref 變量,然后將該變量設(shè)置給子組件的 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> </> ) } })
兩者實(shí)現(xiàn)效果一致:
以上就是“怎么使用Vue3 SFC和TSX方式調(diào)用子組件中的函數(shù)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習(xí)更多的知識,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。