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

溫馨提示×

溫馨提示×

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

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

vue3中setup函數的參數props和context怎么配置

發布時間:2022-08-09 11:21:23 來源:億速云 閱讀:561 作者:iii 欄目:web開發

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

1.setUp函數的第1個參數props

setup(props,context){}

第一個參數props:

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

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

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

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

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

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

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

<script>
import NoCont from "../components/NoCont.vue"
export default {
  setup () {
    let msg={
      title:'父組件給子給子組件的數據'
    }
    function sonclick(msss:string){
      console.log(msss)
    }
    return {msg,sonclick}
  },
  components:{
    NoCont
  }
}
</script>
<template>
    <div @click="sonHander">
        我是子組件中的數據
    </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函數的參數props和context怎么配置

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

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

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

如果我們添加上接受配置

2.參數context的講解

第2個參數:context,是一個對象。

里面有attrs(獲取當前標簽上的所有屬性的對象)

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

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

則:獲取的值是undefined

注意點:

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

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

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

有slots插槽

<template>
    <div @click="sonHander">
        我是子組件中的數據
    </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);
    
    // 輸出別人的標題【使用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函數的參數props和context怎么配置

3. 子組件向父組件派發事件

<template>
    <div @click="sonHander">
        我是子組件中的數據
    </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.優化事件派發

我們知道第2個參數context是一個對象

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

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

<template>
    <div @click="sonHander">
        我是子組件中的數據
    </div>
</template>

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

5.獲取父組件傳遞的值

我們將使用props參數獲取值

以及使用attrs獲取值

<template>
<hr/>
   <h3>子組件</h3>
    <div @click="sonHander">
        我是子組件中的數據
    </div>
    <h3>使用了props聲明接收==>{{ mytitle  }}</h3> 
    <h3>使用參數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函數的參數props和context怎么配置

附使用setup函數時需要注意幾點:

  • setup函數的執行時機是在beforeCreate和created之間

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

  • setup中this指向undefined

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

關于“vue3中setup函數的參數props和context怎么配置”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“vue3中setup函數的參數props和context怎么配置”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

隆化县| 萨嘎县| 垫江县| 海丰县| 侯马市| 楚雄市| 澄江县| 青阳县| 南昌县| 盐津县| 辽源市| 那坡县| 榆社县| 延庆县| 台安县| 翼城县| 临武县| 云霄县| 汤阴县| 新巴尔虎右旗| 台中县| 南雄市| 新宾| 凤庆县| 张家界市| 新田县| 会昌县| 诸城市| 盐源县| 驻马店市| 新干县| 五寨县| 林甸县| 拜城县| 健康| 徐水县| 滕州市| 响水县| 建昌县| 定襄县| 大方县|