change page title to " - Login" when on Login Form

This commit is contained in:
Thomas Christlieb 2022-07-04 10:16:33 +02:00
parent 624678826d
commit 42e30de209

View File

@ -54,6 +54,15 @@ export default {
tokenRequired: false,
};
},
mounted() {
document.title += " - Login";
},
unmounted() {
document.title = document.title.replace(" - Login", "");
},
methods: {
/** Submit the user details and attempt to log in */
submit() {