真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vue3組件通信的幾種方式分別是這樣的

vue3組件通信的幾種方式分別是這樣的,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

創(chuàng)新互聯(lián)提供成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計,高端網(wǎng)站設(shè)計,廣告投放等致力于企業(yè)網(wǎng)站建設(shè)與公司網(wǎng)站制作,十年的網(wǎng)站開發(fā)和建站經(jīng)驗,助力企業(yè)信息化建設(shè),成功案例突破超過千家,是您實現(xiàn)網(wǎng)站建設(shè)的好選擇.

vue3組件通信方式為以下幾種

  • props

  • $emit

  • $expose / ref

  • $attrs

  • v-model

  • provide / inject

  • Vuex

  • mitt

props


    const props = defineProps({
        // 寫法一
        msg2:String
        // 寫法二
        msg2:{
            type:String,
            default:''
        }
    })
    console.log(props) // {msg2:'這是傳級子組件的信息2'}
$emit
//Child.vue


    // 方法一
    const emit = defineEmits(['myClick'],['myClick2'])
    // 方法二
    const handleClick = () => {
        emit('myClick','這是發(fā)送給父組件的信息');
     }
     
     // 方法二 不適用于vue3.2,使用的useContext()已經(jīng)舍棄
     import { useContext } from 'vue'
     const { emit } = useContext()
     const handleClick = () => { 
      emit('myClick','這是發(fā)送給父組件的信息'   
     }


// Parent.vue響應


    import child from "./child.vue"
    import onMychilk = (msg) => {
        console.log(msg) // 父組件收到的信息 
    }
expose / ref

父組件獲取子組件的屬性或者調(diào)用子組件方法


    // 方法一:useContext() vue3.2 之后已經(jīng)舍棄
    import { useContext } from 'vue'
    const ctx = useContext()
    // 對外暴露屬性方法等都可以
    ctx.expose({
        childName: '這是子組建的屬性',
        someMethod(){
        console.log('這是子組件的方法')
        }
    })


// Parent.vue 注意 ref="comp"

attts

attrs:包含父作用域除class和style除外的非props屬性集合

// 父組件


    import child from './child.vue'
    import { ref,reactive } from 'vue
    const msg1 = ref('111')
    const msg2 = ref('222')


// 子組件

    import { defineProps,useContext,useAttars } from 'vue'
    const props = defineProps({
        msg1: String
    })
    
    // 方法1
    const ctx = useContext()
    console.log(ctx.attars) // {msg2:'222',title:'333'}
    
    // 方法2 
    const attrs = useAttars()
    console.log(attars)  // {msg2:'2222',title:'3333'}
v-model

可以支持多個數(shù)據(jù)雙向綁定




//子組件


    // 方法一  v3.2 已被移除
    import { useContext } from 'vue'
    const { emit } = useContext()
    
    // 方法二
    import { defineEmits } from 'vue'
    const emit = defineEmits(['key','value'])
    
    //用法
    const handleClick = () => {
        emit('update:key','新的key')
        emit('update:value','新的value')
    }
provide / inject

provide/inject為依賴注入 provide:可以讓我們指定想要提供給后代組件的數(shù)據(jù) inject:在任何后代組件中接受想要添加在這個組件上的數(shù)據(jù),不管組件嵌套多深都可以直接拿來用

    // 父組件
    
        import { provide } from 'vue'
        const name = provide('name')
        console.log('name','沐華')
    
    //子組件
    
        import { inject } from 'vue'
        const name = inject('name')
        console.log(name) //木華
    
Vuex
   //store/index.js
   import { createStore } from 'vuex'
   export default createStore({
       state:{count:1},
       getters:{
           getCount:state=>state.count
       },
       mutations:{
           add(state){
               state.count++
           }
       }
      })
    // main.js
    import { createApp } from 'vue'
    import APP from './App.vue'
    import store from './store'
    createApp(APP).use(store).mount("#app")
    
    // 直接使用
    
    
    // 獲取
    
        import { useStore,computed } from 'vuex'
        const store = useStore()
        console.log(store.state.count)
        
        const count = computed (()=>store.state.count)
        console.log(count)
    
mitt

Vue3中已經(jīng)沒有了EventBus跨組件通信,替代方案mitt.js,但原理方式EventBus是一樣的
安裝方式 npm i mitt -S
封裝

mitt.js
import mitt from 'mitt'
const mitt = mitt()
export default mitt

組件之間使用

// 組件A 

    import mitt from './mitt'
    const handleClick = () => {
        mitt.emit('handleChange')
    }

// 組件B 

import mitt from './mitt'
import { onUnmounted } from 'vue'
const someMethod = () => {...}
mitt.on('handleChange',someMethod)
onUnmounted(()=>{
    mitt.off('handleChange',someMethod)
})

看完上述內(nèi)容,你們掌握vue3組件通信的幾種方式分別是這樣的的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


分享標題:vue3組件通信的幾種方式分別是這樣的
本文鏈接:http://weahome.cn/article/jjdehp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部