Reputation: 73
My webapp it's working just fine until I got CORS error trying to do a request from a v-autocomplete
(on a keydown event). Only happens me there and I don't know why. If I make the same request from any other place or any other component it works flawlessly. Any suggestions? Thanks
Upvotes: 0
Views: 140
Reputation: 519
sometimes the CORS headers are sent only on OPTIONS
and GET
, v-autocomplete might be a PUT
https://github.com/pelias/api/issues/296
Upvotes: 3