What is the corect way to import vue packages in laravel 5.6? It comes with vue and bootstrap preinstall. I see they are all compile in app.js from public directory but I can fi
One missing detail that tricked me with this one, you need to register the components like this, otherwise it won't be found:
components: { ModelSelect, BasicSelect },