Migrate openid error page to vuejs

This commit is contained in:
Johannes Zellner
2025-03-29 15:32:53 +01:00
parent 16caeb5400
commit f0f04ce3ff
4 changed files with 105 additions and 37 deletions
+16
View File
@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import '@fontsource/noto-sans';
import i18n from './i18n.js';
import OidcError from './components/OidcError.vue';
import './style.css';
(async function init() {
const app = createApp(OidcError);
app.use(await i18n());
app.mount('#app');
})();