We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
API Platform version(s) affected: 3.2.18
Description Error when loading generated Form page for a resource: The requested module '...' does not provide an export named 'Ref'
How to reproduce
Possible Solution Just go to ./components/animal/AnimalForm.vue and replace: import { Ref } from "vue"; to import type { Ref } from "vue";
./components/animal/AnimalForm.vue
import { Ref } from "vue";
import type { Ref } from "vue";
Additional Context Nuxt v.3.11.1 Vue v.3.4.21
The text was updated successfully, but these errors were encountered:
Hello @robregonm
Thank you for bringing this to our attention. We plan to address this issue in an upcoming release. Please stay tuned for updates!
Sorry, something went wrong.
No branches or pull requests
API Platform version(s) affected: 3.2.18
Description
Error when loading generated Form page for a resource: The requested module '...' does not provide an export named 'Ref'
How to reproduce
You'll get a message saying: "The requested module does not provide an export named 'Ref'"
Possible Solution
Just go to
./components/animal/AnimalForm.vue
and replace:import { Ref } from "vue";
to
import type { Ref } from "vue";
Additional Context
Nuxt v.3.11.1
Vue v.3.4.21
The text was updated successfully, but these errors were encountered: