Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 802 Bytes

File metadata and controls

28 lines (19 loc) · 802 Bytes

MVCExtensionWithVueJSComponentWebpack

MVCExtension + VueJS and Component + Webpack fully optimized for production application

Installing Webpack

*Step 1 npm install webpack webpack-cli --save-dev

*Step 2 import and export function from js file

  • func.js

    /* */

    • function funcName() { console.log( This is the function exported ); }
    • export default funcName; /* */

*Step 3 export function to main js app

  • main.js (This where you can use all JS exported function)

    /* */

    • import funcNameAlias from './func.js'
    • /* the function available to use now ! / funcName(); / */