[Vuejs]-How to load a local JavaScript file only within certain components

0👍

you can import that script in the component:

// Dashboard.vue
import * as dashboard from "./dashboard";

and then import jQuery inside dashboard.js

// dashboard.js
import jQuery from "jquery";
window.$ = window.jQuery = jQuery;

$(function() {
  var $div = $("div");
  $div.on("click", function() {
    //do stuff
    alert();
  });
});

Leave a comment