跳至内容

useForwardProps

转发组件的道具,不进行布尔值转换

当您为组件构建包装器时,在某些情况下,您希望忽略 Vue Props 布尔值转换.

您可以将所有布尔字段的默认值设置为 undefined,或者可以使用此组合。

用法

vue
<script setup lang="ts">
import { useForwardProps } from 'radix-vue'

const props = defineProps<CompEmitProps>()
const forwarded = useForwardProps(props)
</script>

<template>
  <Comp v-bind="forwarded">
    ...
  </Comp>
</template>