Your application may contain a lot of components that are using the same logic. For example, you may have a lot of components that emit the same event. In this case, it might be tempting to create a composable that will emit this event and is used in all components.
If you are using Vue 3 with the <script setup> you define your emits using the defineEmits compiler macro:
评论
发表评论