Move password reset view to vue and pankow

This commit is contained in:
Johannes Zellner
2024-12-14 23:20:21 +01:00
parent a2b737e6a0
commit ab62f61256
7 changed files with 255 additions and 167 deletions

View File

@@ -0,0 +1,12 @@
import { createApp } from 'vue';
import i18n from './i18n.js';
import PasswordReset from './components/PasswordReset.vue';
(async function init() {
const app = createApp(PasswordReset);
app.use(await i18n());
app.mount('#app');
})();