We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
根据官网的使用方式,进行引入使用。能正常使用,但是这边使用的是index.tsx 格式的文件进行书写。就报类型“JSX.IntrinsicElements”上不存在属性“calendar”。 这个问题
The text was updated successfully, but these errors were encountered:
请问怎么处理
Sorry, something went wrong.
// global.d.ts declare namespace JSX { interface IntrinsicElements { calendar: any; } }
目前似乎只能这样
// global.d.ts declare namespace JSX { interface IntrinsicElements { calendar: any; } } 目前似乎只能这样
这个要怎么使用呢。。😢
也可以在上面加一行 @ts-ignore 跳过检查
也可以在上面加一行@ ts-ignore跳过检查
非常感谢,这也是一种方式!
No branches or pull requests
根据官网的使用方式,进行引入使用。能正常使用,但是这边使用的是index.tsx 格式的文件进行书写。就报类型“JSX.IntrinsicElements”上不存在属性“calendar”。 这个问题
The text was updated successfully, but these errors were encountered: