中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

vue3中setup函數(shù)的參數(shù)props和context怎么配置

這篇文章主要介紹了vue3中setup函數(shù)的參數(shù)props和context怎么配置的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇vue3中setup函數(shù)的參數(shù)props和context怎么配置文章都會有所收獲,下面我們一起來看看吧。

成都創(chuàng)新互聯(lián)于2013年創(chuàng)立,先為汝南等服務(wù)建站,汝南等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為汝南企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

1.setUp函數(shù)的第1個參數(shù)props

setup(props,context){}

第一個參數(shù)props:

props是一個對象,包含父組件傳遞給子組件的所有數(shù)據(jù)。

在子組件中使用props進行接收。

包含配置聲明并傳入的所有的屬性的對象

也就是說:如果你想通過props的方式輸出父組件傳遞給子組件的值。

你需要使用props進行接收配置。即props:{......}

如果你未通過Props進行接受配置,則輸出的值是undefined

<template>
  <div>
    父組件 
  </div>
  <no-cont :mytitle="msg" 
      othertitle="別人的標(biāo)題"
      @sonclick="sonclick">
  </no-cont>
</template>

<script>
import NoCont from "../components/NoCont.vue"
export default {
  setup () {
    let msg={
      title:'父組件給子給子組件的數(shù)據(jù)'
    }
    function sonclick(msss:string){
      console.log(msss)
    }
    return {msg,sonclick}
  },
  components:{
    NoCont
  }
}
</script>
<template>
    <div @click="sonHander">
        我是子組件中的數(shù)據(jù)
    </div>
</template>

<script>
import { defineComponent,setup } from 'vue';
export default defineComponent({
  name: 'NoCont',
 //  未進行接受
 //   props:{
 //     mytitle:{
 //         type:Object
 //     }
 //   },
  setup(props,context){
    console.log('props==>',props.mytitle);//輸出的值是 undefined
    function sonHander(){
        context.emit('sonclick','子組件傳遞給父組件')
    }
    return {sonHander}
  }
});
</script>

vue3中setup函數(shù)的參數(shù)props和context怎么配置

為什么通過props.mytitle輸出的值是undefined呢?

因為我們沒有使用props進行接收配置。即

props:{
    mytitle:{
        type:Object
    }
},

如果我們添加上接受配置

2.參數(shù)context的講解

第2個參數(shù):context,是一個對象。

里面有attrs(獲取當(dāng)前標(biāo)簽上的所有屬性的對象)

但是該屬性是props中沒有聲明接收的所有的對象。

如果你使用props去獲取值,同時props中你聲明了你要獲取的值

則:獲取的值是undefined

注意點:

attrs獲取值是不需要props中沒有聲明接收。

第1個參數(shù)props獲取值是需要props中聲明接收的

有emit事件分發(fā),(傳遞給父組件需要使用該事件)

有slots插槽

<template>
    <div @click="sonHander">
        我是子組件中的數(shù)據(jù)
    </div>
</template>

<script>
import { defineComponent,setup } from 'vue';
export default defineComponent({
  name: 'NoCont',
  props:{
      mytitle:{
          type:Object
      }
  },
  setup(props,context){
    //輸出{title:父組件傳遞的值}
    console.log('props==>',props.mytitle);
    
    // 輸出別人的標(biāo)題【使用context獲取值,不需要使用props去接受】
    console.log('context==> ',context.attrs.othertitle);
    
    // 輸出undefined,因為context不需要使用props去接受。
    console.log('contextmytitle==> ',context.attrs.mytitle);
    function sonHander(){
        context.emit('sonclick','子組件傳遞給父組件')
    }
    return {sonHander}
  }
});
</script>

vue3中setup函數(shù)的參數(shù)props和context怎么配置

3. 子組件向父組件派發(fā)事件

<template>
    <div @click="sonHander">
        我是子組件中的數(shù)據(jù)
    </div>
</template>

<script>
import { defineComponent,setup } from 'vue';
export default defineComponent({
  name: 'NoCont',
  props:{
      mytitle:{
          type:Object
      }
  },
  setup(props,context){
    function sonHander(){
        context.emit('sonclick','子組件傳遞給父組件')
    }
    return {sonHander}
  }
});
</script>

4.優(yōu)化事件派發(fā)

我們知道第2個參數(shù)context是一個對象

并且對象中有三個屬性attrs,slots,emit

在事件派發(fā)的時候,直接使用emit就ok了

<template>
    <div @click="sonHander">
        我是子組件中的數(shù)據(jù)
    </div>
</template>

<script>
import { defineComponent,setup } from 'vue';
export default defineComponent({
  name: 'NoCont',
  props:{
      mytitle:{
          type:Object
      }
  },
  setup(props,{attrs,slots,emit}){
    //直接使用emit進行事件派發(fā)
    function sonHander(){
        emit('sonclick','子組件傳遞給父組件')
    }
    return {sonHander}
  }
});
</script>

5.獲取父組件傳遞的值

我們將使用props參數(shù)獲取值

以及使用attrs獲取值

<template>
<hr/>
   <h3>子組件</h3>
    <div @click="sonHander">
        我是子組件中的數(shù)據(jù)
    </div>
    <h3>使用了props聲明接收==>{{ mytitle  }}</h3> 
    <h3>使用參數(shù)attrs獲取==>{{ attrs.othertitle  }}</h3> 
</template>

<script>
import { defineComponent,setup } from 'vue';
export default defineComponent({
  name: 'NoCont',
  props:{
      mytitle:{
          type:Object
      }
  },
  setup(props,{attrs,slots,emit}){
    function sonHander(){
        emit('sonclick','子組件傳遞給父組件')
    }
    return {sonHander,attrs}
  }
});
</script>

vue3中setup函數(shù)的參數(shù)props和context怎么配置

附使用setup函數(shù)時需要注意幾點:

  • setup函數(shù)的執(zhí)行時機是在beforeCreate和created之間

  • 由于setup執(zhí)行時機是在created之間,所以組件才剛剛被創(chuàng)建,而data和methods還沒初始化好,所以無法在setup中使用data和methods

  • setup中this指向undefined

  • setup只能是同步的,不能是異步的

關(guān)于“vue3中setup函數(shù)的參數(shù)props和context怎么配置”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“vue3中setup函數(shù)的參數(shù)props和context怎么配置”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

網(wǎng)站標(biāo)題:vue3中setup函數(shù)的參數(shù)props和context怎么配置
網(wǎng)頁地址:http://www.rwnh.cn/article26/gpoecg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、網(wǎng)站排名、標(biāo)簽優(yōu)化、用戶體驗、網(wǎng)站維護電子商務(wù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)
如皋市| 会宁县| 常州市| 宜黄县| 哈巴河县| 南雄市| 峨眉山市| 榆中县| 阜南县| 杭锦旗| 陵川县| 仙桃市| 鸡泽县| 开原市| 榆林市| 汾西县| 东阳市| 邵阳市| 清水河县| 确山县| 甘谷县| 大同市| 泾阳县| 林西县| 江西省| 丽江市| 石泉县| 云阳县| 维西| 祁东县| 虎林市| 林芝县| 玉龙| 台中市| 鹰潭市| 安陆市| 仪陇县| 张家港市| 皋兰县| 安远县| 通城县|