File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -417,6 +417,23 @@ Example of the typechecking in action:
417417
418418
419419
420+ ### Nuxt ` StoreResolvedModdelItem ` renamed to ` StoreResolvedCollectionItem `
421+
422+ <FrameworkBadges
423+ :frameworks="{
424+ vue: false,
425+ nuxt: true,
426+ }"
427+ />
428+
429+ ` ` ` ts
430+ import type { StoreResolvedModelItem } from ' #imports' ; // [!code --]
431+ import type { StoreResolvedCollectionItem } from ' #imports' ; // [!code ++]
432+
433+ export type UserResolvedItem = StoreResolvedModelItem < typeof Users > ; // [!code --]
434+ export type UserResolvedItem = StoreResolvedCollectionItem < typeof Users > ; // [!code ++]
435+ ` ` `
436+
420437## Query
421438
422439### Methods don't accept Ref or getter anymore
You can’t perform that action at this time.
0 commit comments