Move password reset view to vue and pankow
This commit is contained in:
12
dashboard/src/passwordreset.js
Normal file
12
dashboard/src/passwordreset.js
Normal 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');
|
||||
})();
|
||||
Reference in New Issue
Block a user