-
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
docsClarifications on documentationClarifications on documentation
Description
If I copy-paste the With Swipe and Progress example in the documentation.
<Notivue v-slot="item">
<NotivueSwipe :item="item">
<Notification :item="item">
<NotificationProgress />
</Notification>
</NotivueSwipe>
</Notivue>I get this TypeScript error:
Property 'item' is missing in type '{}' but required in type 'Omit<{ readonly item: NotivueItem; } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>'.ts-plugin(2345)
The fix is easy, replace <NotificationProgress /> with <NotificationProgress :item="item" />
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
docsClarifications on documentationClarifications on documentation