[Vuejs]-Vue.js2 : How to reuse a constant defined inside a component

-1👍

Can you do something like in a const.js file:

export const ConstName = {
  //Code in here
}

Then you can import this in any component at the top:

import ConstName form '/path/to/const.js

Leave a comment