You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to version 1.0.10, I am getting the following error.
Type '{ class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>'.
Object literal may only specify known properties, and 'class' does not exist in type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>'.ts(2322)
When I reverted back to version 1.0.9, the error was resolved.
This appears to be caused by importing '@storybook/vue3'.
Excluding the story file in tsconfig.json solves this problem.
tsconfig.json
{
"exclude": [
"**/*.stories.ts"
]
}
However, I would like to solve this problem, because this way, types does not work in the story files.
The text was updated successfully, but these errors were encountered:
After updating to version 1.0.10, I am getting the following error.
When I reverted back to version 1.0.9, the error was resolved.
This appears to be caused by importing '@storybook/vue3'.
Excluding the story file in tsconfig.json solves this problem.
tsconfig.json
However, I would like to solve this problem, because this way, types does not work in the story files.
The text was updated successfully, but these errors were encountered: