[Vuejs]-Creating a search bar using Laravel and Vue JS (Vuetify Framework) – resulting in error 'Cannot read property 'protocol' of undefined'

0👍

This error message is telling you that somewhere in your javascript code you are referencing a protocol attribute on an object which does not exist. It looks like whatever code this is has not been included in the post.

You need to find that reference, e.g. request.protocol or meeting.protocol. Then, look for where the object (request or meeting in these examples) comes from specific to the context, and ensure it is loaded and/or passed correctly.

If you need further help, you will need to post the code which references [something].protocol and it’s full context.

Hope this helps!

Leave a comment