Files
2026-02-23 14:02:44 +01:00

12 lines
314 B
JavaScript

import AppShell from './components/app-shell/app-shell.js';
const { createApp } = Vue;
const app = createApp(AppShell);
app.use(Quasar, { config: { brand: { primary: '#334155' } } });
document.documentElement.classList.add('app-shell-html');
document.body.classList.add('app-shell-body');
app.mount('#q-app');