vue3.x中emits的基本用法實例

這是官方的文字介紹。emits重要用於組件之間的通信,觸發自定義事件,傳遞參數。

下面演示一個子組件把事件傳遞到父組件,組件間通信的例子。

<template>
  <teleport to="#modal">
    <div id="center" v-if="isOpen">
      <h2>
        <slot>this is a modal</slot>
      </h2>
      <button @click="clickButton">close</button>
    </div>
  </teleport>
</template>
<script lang="ts">
import { defineComponent } from 'vue';

export default defineComponent({
  props: {
    isOpen: Boolean,
  },
  emits: {
    'close-modal': null,
  },
  setup(props, context) {
    const clickButton = () => {
      context.emit('close-modal');
    };
    return {
      clickButton,
    };
  },
});
</script>

<style scoped>
#center {
  width: 200px;
  height: 200px;
  border: 2px solid black;
  background: white;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -100px;
  margin-top: -100px;
}
</style>

isOpen用來表示Modal的顯示與隱藏,點擊按鈕,觸發clickButton函數,父組件調用,觸發自定義事件close-modal,而close-modal在父組件中綁定瞭onModalClose函數,實現瞭對Modal的隱藏。

<template>
  <div id="main">
    <modal :isOpen="modalIsOpen" @close-modal="onModalClose">my modal</modal>
    <button @click="onModalOpen">Open Modal</button>
  </div>
</template>

<script lang="ts">
import { defineComponent, ref } from 'vue';
import Modal from './components/Modal.vue';

export default defineComponent({
  components: { Modal },
  name: 'App',
  setup(){
    const modalIsOpen = ref(false)
    const onModalOpen = ()=>{
      modalIsOpen.value = true
    }
    const onModalClose = ()=>{
      modalIsOpen.value = false
    }
    return{
      onModalOpen,
      onModalClose,
      modalIsOpen
    }
  }
});
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
button {
  font-size: 2rem;
}
</style>

emits的文檔

附:vue3自定義組件中的emits使用介紹

<template>
  <!-- teleport的使用  to屬性渲染到id為 teleport-test 的元素身上   在index.html中-->
  
   <div id="center" v-if="isOpen">
     <slot>插槽</slot>
     <button @click="buttonClick">關閉模態框</button>
   </div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
  props:{

    isOpen: {
      type: Boolean,
      required: true
    },
  },
  // emits 寫自定義事件  作用 比較清晰知道該組件有那些自定義事件
  emits: {
    // 無需驗證寫法
    'close-model': null,

    // 這種寫法  自定義函數  可以在運行時驗證參數是否正確
    'close-modals': (payload: any) => {
      return payload.type === 'close'
    }
  },
  setup(props,context) {
    const buttonClick = () => {
      context.emit('close-model')
    }

    // 這種寫法來校驗
    context.emit('close-modals',{
      // 如果驗證失敗會有一個警告
      type: 'close'
      // type: 'sss'
    })
    return {
      buttonClick
    }
  }
})

</script>

<style>
#center{
  width: 600px;
  height: 300px;
  border: 1px solid #999;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -300px;
  margin-top: -150px;
}
</style>

總結

到此這篇關於vue3.x中emits基本用法的文章就介紹到這瞭,更多相關vue3.x中emits用法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: