当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Vue.js ComponentCustomProps用法及代码示例


用于扩充允许的 TSX 道具,以便在 TSX 元素上使用未声明的道具。

示例

declare module 'vue' {
  interface ComponentCustomProps {
    hello?: string
  }
}

export {}
// now works even if hello is not a declared prop
<MyComponent hello="world" />

TIP

增强必须放在模块.ts.d.ts 文件中。有关详细信息,请参阅Type Augmentation Placement

相关用法


注:本文由纯净天空筛选整理自vuejs.org大神的英文原创作品 ComponentCustomProps。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。