qms
qms

Reputation: 142

global function import with webpack

lets say I have a huge js file with global functions like:

function a() ....
function b() ....

How can I import them to a webpack bundle and use? require/import?

Upvotes: 2

Views: 384

Answers (1)

A1Gard
A1Gard

Reputation: 4168

The simple way to add your function to webpack is:

1) create new js file in assets for example assets/js/fnc.js is our file name.

2) Import fnc.js to app for example I use the vue.

  import Vue from 'vue'
    ...
    import Fnc from '@/assets/js/fnc.js';
    import HelloWorld from '@/components/HelloWorld'
    ...

Then you can use your functions : )

Note: define functions by this pattern:

a = function () {
  alert(1);
  return  false;
}

b = function () {
  alert(2);
  return  false;
}

Don't define with your pattern and don't use var or let before function name.

Upvotes: 1

Related Questions