diff --git a/src/components/Login.vue b/src/components/Login.vue index 3a821881..0a0266e7 100644 --- a/src/components/Login.vue +++ b/src/components/Login.vue @@ -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() {