[Vuejs]-How do I import the bootstrap.min.js into Vue JS

0👍

I’ve moved the import of the JS files to main.js. Here is the code snippet

import "../node_modules/jquery/dist/jquery.slim.min";
import "../node_modules/popper.js/dist/popper.min";
import "../node_modules/bootstrap/dist/js/bootstrap";

The navigation is now working on mobile

Leave a comment