gpt4 book ai didi

typescript - 如何使用 Typescript 在 vuejs 中创建功能组件

转载 作者:行者123 更新时间:2023-12-03 22:12:33 28 4
gpt4 key购买 nike

我想用 typescript 在 vuejs 中创建一个功能组件。但是,我不确定如何设置通用部分以便我可以访问我的 Prop 。到目前为止我有这个:

import Vue, { FunctionalComponentOptions } from 'vue';

export default Vue.component<FunctionalComponentOptions>('MyWrapper', {
functional: true,
render: (createElement, context) => {

if (context.props['flagSet']) {
console.log('flagset');
}

return createElement('div', context.data, context.children);
}
});

我得到的 context.props 行的错误是 Element implicitly has an 'any' type because type 'FunctionalComponentOptions<Record<string, any>, PropsDefinition<Record<string, any>>>' has no index signature.
我不确定如何解决。

最佳答案

使上述代码工作的正确方法是传入一个描述 props 的接口(interface)。

interface IProps {
flagSet: string;
}

export default Vue.component<IProps>

回顾最初的问题,我不确定我为什么要尝试插入 FunctionalComponentOptions作为类型参数。我责怪深夜的编码 session 。 :)

关于typescript - 如何使用 Typescript 在 vuejs 中创建功能组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53332095/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com