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/contribute/main.js

17 lines
280 B
JavaScript

import {createApp} from 'vue';
import {configApp} from 'utils/app';
import {configVuetify} from 'utils/vuetify';
import App from './App';
async function init() {
const app = createApp(App);
await configApp(app);
await configVuetify(app);
app.mount('body');
}
init();