Try first view support

This commit is contained in:
Johannes Zellner
2024-11-01 14:16:09 +01:00
parent e536c94028
commit 0513ed16bb
5 changed files with 159 additions and 4 deletions

16
dashboard/src/index.js Normal file
View File

@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import './style.css';
import '@fontsource/noto-sans';
import i18n from './i18n.js';
import Index from './components/Index.vue';
(async function init() {
const app = createApp(Index);
app.use(await i18n());
app.mount('#vueapp');
})();