You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buster/src/setup/main.js

22 lines
407 B
JavaScript

import {createApp} from 'vue';
import {configApp, loadFonts} from 'utils/app';
import {configVuetify} from 'utils/vuetify';
import App from './App';
async function init() {
await loadFonts(['400 14px Roboto', '500 14px Roboto']);
const app = createApp(App);
await configApp(app);
await configVuetify(app);
app.mount('body');
}
// only run in a frame
if (window.top !== window) {
init();
}