Initial take on the first dns setup view

This commit is contained in:
Johannes Zellner
2025-04-01 19:04:10 +02:00
parent 89d50ed5f1
commit 0a49fcb22a
3 changed files with 199 additions and 404 deletions

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

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