12 lines
314 B
JavaScript
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');
|