Created
December 2, 2020 09:38
-
-
Save ThaddeusJiang/536abd1492ac28727d9b873d0d437668 to your computer and use it in GitHub Desktop.
Vue 推荐使用 kebab-case 的事件名
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.$emit('my-event') | |
// 👇 无效,详细:https://cn.vuejs.org/v2/guide/components-custom-events.html#事件名 | |
this.$emit('myEvent') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// parent | |
<my-component v-on:my-event="doSomething"></my-component> |
Author
ThaddeusJiang
commented
Dec 2, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment