useEmitAsProps
将 emits 转换为类似于 props 的对象
当您为组件构建包装器时,最大的痛点之一是转发来自组件的所有发出的事件。
通过使用此 composables,它会将您声明的 emits
转换为 Vue 组件可以接受的处理程序对象。
用法
vue
<script setup lang="ts">
import { useEmitAsProps } from 'radix-vue'
const emits = defineEmits<CompEmitType>()
const emitsAsProps = useEmitAsProps(emits)
</script>
<template>
<Comp v-bind="emitsAsProps">
...
</Comp>
</template>