Open robregonm opened 8 months ago
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
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!
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";
toimport type { Ref } from "vue";
Additional Context
Nuxt v.3.11.1 Vue v.3.4.21