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
- [Vuejs]-How to force Tagify to only accept tags made of lowercase and underscores?
- [Vuejs]-Request failed with status code 401 even when I passed the api token
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.
Source:stackexchange.com