JavaScript

Any .js or .vue file from src/js or any subfolders that does NOT start with an underscore _ will get compiled into dist/assets/js.

Main Application JavaScript File

You can customize the main application JavaScript file in src/js/scripts/app.js which will get compiled to dist/js/app.js.

import './main' import './perfect-scrollbar' ... (function() { 'use strict'; // Custom JavaScript can go here ... })()

Pages

Page specific JavaScript files are located within src/js/pages so you can quickly identify them.

src/js/pages ├── page.instructor-dashboard.js ├── page.instructor-earnings.js ├── page.student-dashboard.js └── page.ui-charts.js

Plugins

Plugins can be customized in src/js/vendor.

src/js/vendor ├── chartjs-rounded-bar.js ├── chartjs.js ├── countdown.js ├── dragula.js ├── fancytree.js ├── flatpickr.js ├── fullcalendar.js ├── list.js ├── map-single-marker.js ├── map.js ├── nestable.js ├── quill.js ├── sweetalert.js ├── touchspin.js └── vector-maps.js