Closed sergerdn closed 1 year ago
Notice that the actual error in my case was that I renamed the Vuex store module on import which did cause a mismatch. Based on a MyResource
resource the module was generated as myresource
which I did import as myResource
and using the ES shortcut notation lead to myResource
being used as store module key. Sticking to the import suggested by the generator fixed my issue.
API Platform version(s) affected: 0.5.1
Description
How to reproduce
Additional Context
How to fix
src/components/book/Form.vue
: Left - bad, Right side - fixes