[Vuejs]-How to install jquery in vue project

0👍

In your app.js, you did not include bootstrap.js that’s why it is not working.

Include boostrap.js in app.js at the top as shown below

require('./bootstrap');

if we dont import it then axios will also not work because it is imported in bootstrap.js which is not included in app.js

0👍

I found a solution, Laravel 6 has a new UI pack .First of all ,We need to install this packet and all files working correctly.

Leave a comment