Files
newfreeplanet_OLD/src/boot/myconfig.ts

11 lines
280 B
TypeScript
Raw Normal View History

2021-08-31 18:09:59 +02:00
// import something here
import { boot } from 'quasar/wrappers'
import myconfig from '../myconfig'
// leave the export, even if you don't use it
export default boot(({ app }) => {
// Vue.use(myconfig);
// something to do
app.config.globalProperties.$myconfig = myconfig
})