Invalid prop: type check failed for prop "title". Expected String with value "500", got Number with value 500.
Problem.
I'm using Nuxt 3.11.1 and my Node version is 20.12.2. And one of my pages unreasonably throw out the misleading error :
Invalid prop: type check failed for prop "title". Expected String with value "500", got Number with value 500.
I had tried to remove all related "title", but the error was still there.
Solution.
The error is due to useFetch
, just change useFetch
to useAsyncData
.
0 人喜欢
There is no comment, let's add the first one.