-
Notifications
You must be signed in to change notification settings - Fork 115
docs: update composables docs #994
New issue
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
Conversation
| /** | ||
| * Indicates whether any of the methods is in progress | ||
| */ | ||
| loading: DeepReadonly<Ref<boolean>>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| loading: DeepReadonly<Ref<boolean>>, | |
| loading: Readonly<Ref<boolean>>, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The @nuxtjs/composition-api package doesn't export the Readonly type
| @@ -1,20 +1,32 @@ | |||
| import { ComputedRef, DeepReadonly, Ref } from '@nuxtjs/composition-api'; | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| import { ComputedRef, DeepReadonly, Ref } from '@nuxtjs/composition-api'; | |
| import { ComputedRef, Readonly, Ref } from '@nuxtjs/composition-api'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The @nuxtjs/composition-api package doesn't export the Readonly type
This reverts commit 6158da3.
This PR: