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

溫馨提示×

溫馨提示×

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

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

Vue3常用的通訊方式有哪些

發布時間:2022-05-30 09:36:30 來源:億速云 閱讀:154 作者:zzz 欄目:開發技術

這篇文章主要講解了“Vue3常用的通訊方式有哪些”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Vue3常用的通訊方式有哪些”吧!

props

父組件

    <template>
      <div>
          <Child :msg="msg" :obj="obj" />
      </div>
    </template>

    <script setup>
        import { ref, reactive } from 'vue'
        // Vue3.2版本setup語法糖引入組件不需要注冊便可以使用組件
        import Child from './child.vue'

        const msg = ref('一只豆豆')
        // 傳遞復雜類型數據
        const obj = reactive({name: '豆豆'})
    </script>

子組件

    <template>
      <div></div>
    </template>

    <script setup>
        // Vue3.2版本setup語法糖 defineProps 不需要引入可以直接使用
        const props = defineProps({
            msg: {
                type: String,
                default: ''
            },
            obj: {
                type: Object,
                default: () => {}
            }
        })
        console.log('msg', props.msg); // 一只豆豆
        console.log('obj', props.obj.name); // 豆豆
</script>

$emit

父組件

    <template>
      <div>
          <Child @myClick="myClick" />
      </div>
    </template>

    <script setup>
        import { ref, reactive } from 'vue'
        import Child from './child.vue'

        const myClick = val => {
            console.log('val', val); // emit傳遞信息
        }
</script>

子組件

    <template>
      <div>
          <button @click="handleClick">click me</button>
      </div>
    </template>

    <script setup>
        // Vue3.2版本setup語法糖 defineEmits 不需要引入可以直接使用
        const emit = defineEmits(['myClick']) // 如果有多個emit事件可以往數組后邊添加即可
        
        const handleClick = ()=>{
            emit("myClick", "emit傳遞信息")
        }
    </script>

EventBus

在Vue3中就沒有EventBus了,可以使用mitt.js來替代
安裝

$ npm install --save mitt

bus.js

    import mitt from 'mitt'
    export default mitt()

兄弟組件A emit觸發

    <template>
      <div>
        <button @click="handleClick">click me</button>
      </div>
    </template>

    <script setup>
        import bus from './bus'
        const handleClick = () => {
          bus.emit('foo', '豆豆')
        }
    </script>

兄弟組件B on接收

    <template>
      <div></div>
    </template>

    <script setup>
        import bus from './bus'
        bus.on('foo', e => {
          console.log('e', e) // '豆豆'
        })
    </script>

v-model

Vue2版本是可以通過修飾符.sync讓子組件修改父組件的值,但是Vue3就取消這個修飾符,融合到v-model里邊去了

父組件

    <template>
      <div>
        <div>{{ name }}</div>
        <div>{{ age }}</div>
        <Child v-model:name="name" v-model:age="age" />
      </div>
    </template>

    <script setup>
        import Child from './child.vue'
        import { ref } from 'vue'

        const name = ref('豆豆')
        const age = ref(20)
    </script>

子組件

    <template>
      <div>
        <div></div>
        <button @click="handleChange">click me</button>
      </div>
    </template>

    <script setup>
        // 'update:name' 這樣寫在console里面就不會有告警了
        const emit = defineEmits(['update:name', 'update:age'])
        const handleChange = () => {
          emit('update:name', '一只豆豆')
          emit('update:age', 18)
        }
    </script>

expose / ref

子組件通過 expose 暴露屬性和方法出去
父組件通過 ref 來獲取子組件的值和調用方法

父組件

    <template>
      <div>
        <Child ref="myRef" />
        <button @click="handleClick">click me</button>
      </div>
    </template>

    <script setup>
        import Child from './child.vue'
        import { ref } from 'vue'
        const myRef = ref(null)
        const handleClick = () => {
          console.log('myRef', myRef.value.name) // 豆豆
          myRef.value.fn() // 一只豆豆
        }
    </script>

子組件

    <template>
      <div>
        <div></div>
      </div>
    </template>

    <script setup>
        // Vue3.2版本setup語法糖 defineExpose 不需要引入可以直接使用
        defineExpose({
          name: '豆豆',
          fn () {
            console.log('一只豆豆')
          }
        })
    </script>

provide / inject

provide / inject 可以給后代組件傳參,嵌套多少層都沒問題

父組件

    <template>
      <div>
        <Child />
      </div>
    </template>

    <script setup>
        import Child from './child.vue'
        import { ref, provide } from 'vue'
        const name = ref('豆豆')
        provide('name', name)
    </script>

后代組件

    <template>
      <div>
        <div>后代組件name {{ name }}</div>
      </div>
    </template>

    <script setup>
        import { inject } from 'vue'
        const name = inject('name')
        console.log('name', name.value) // 豆豆
    </script>

Vue2使用 provide / inject 傳遞數據不是響應式的,所以只能通過傳遞一個對象數據才能變成響應式
Vue3使用 provide / inject傳遞數據就是響應式了,這就很便捷

插槽 slot

普通插槽

父組件

    <template>
      <div>
        <Child>豆豆</Child>
      </div>
    </template>

    <script setup>
        import Child from './child.vue'
    </script>

子組件

    <template>
      <div>
        <slot></slot>
      </div>
    </template>

    <script setup></script>

具名插槽

    <template>
      <div>
        <Child>
          豆豆
          <template #name>
            <div>
              <button>一只豆豆</button>
            </div>
          </template>
        </Child>
      </div>
    </template>

    <script setup>
        import Child from './child.vue'
    </script>

子組件

    <template>
      <div>
        // 普通插槽
        <slot></slot>
        // 具名插槽
        <slot name="name"></slot>
      </div>
    </template>

    <script setup></script>

效果圖

Vue3常用的通訊方式有哪些

作用域插槽

父組件

    <template>
      <!-- v-slot="{scope}" 子組件返回的每一項數據 -->
      <Child v-slot="{ scope }" :arr="arr">
        <div class="box">
          <div>名字:{{ scope.name }}</div>
          <div>年齡:{{ scope.age }}</div>
          <div>愛好:{{ scope.like }}</div>
        </div>
      </Child>
    </template>

    <script setup>
        import { reactive } from 'vue'
        import Child from './child.vue'

        const arr = reactive([
          { name: '張三', age: 18, like: '籃球' },
          { name: '李四', age: 19, like: '排球' },
          { name: '王五', age: 20, like: '足球' }
        ])
    </script>

    <style lang="less">
        .box {
          display: inline-block;
          width: 200px;
          border: dashed blue 1px;
          margin-right: 15px;
          padding: 10px;
        }
    </style>

子組件

    <template>
      <div>
        <!-- :scope="item" 返回每一項 -->
        <slot v-for="item in arr" :scope="item" />
      </div>
    </template>

    <script setup>
        const props = defineProps({
          arr: {
            type: Array,
            default: () => []
          }
        })
    </script>

效果圖

Vue3常用的通訊方式有哪些

感謝各位的閱讀,以上就是“Vue3常用的通訊方式有哪些”的內容了,經過本文的學習后,相信大家對Vue3常用的通訊方式有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

乐清市| 宝兴县| 曲阜市| 太仆寺旗| 浮山县| 南澳县| 芜湖市| 和静县| 江陵县| 宝坻区| 永兴县| 德钦县| 巴彦县| 台前县| 元阳县| 长治县| 定远县| 湖口县| 自贡市| 纳雍县| 兰州市| 丰宁| 澎湖县| 汉阴县| 米泉市| 砚山县| 内乡县| 西丰县| 太原市| 仲巴县| 都江堰市| 鄄城县| 绥中县| 赫章县| 穆棱市| 宁河县| 德阳市| 麟游县| 牙克石市| 理塘县| 清远市|