Use a shared public view layout component

This commit is contained in:
Johannes Zellner
2025-03-31 11:18:09 +02:00
parent cbba373d7d
commit 15269713cc
11 changed files with 176 additions and 238 deletions
+16
View File
@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import '@fontsource/noto-sans';
import i18n from './i18n.js';
import OidcInteractionAbortView from './views/OidcInteractionAbortView.vue';
import './style.css';
(async function init() {
const app = createApp(OidcInteractionAbortView);
app.use(await i18n());
app.mount('#app');
})();