🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
>[success] # emit -- defineEmits Ts ~~~html <script setup lang="ts"> // 运行时 const emit = defineEmits(['change', 'update']) // 基于类型 const emit = defineEmits<{ (e: 'change', id: number): void (e: 'update', value: string): void }>() </script> ~~~ >[info] ## 官网 [# ## 为组件的 emits 标注类型](https://cn.vuejs.org/guide/typescript/composition-api.html#typing-component-emits)