Files
freeplanet/src/boot/myconfig.ts
2020-03-21 10:33:11 +01:00

10 lines
221 B
TypeScript
Executable File

// import something here
import myconfig from '../myconfig'
// leave the export, even if you don't use it
export default ({ Vue }) => {
// Vue.use(myconfig);
// something to do
Vue.prototype.$myconfig = myconfig
}