fix: import onMounted in Login.vue

Problem

The login page failed to mount with ReferenceError: onMounted is not defined (Login.vue:190).

Root cause

Login.vue registered an onMounted hook to fetch website settings, but the vue import only included inject, reactive, ref.

Fix

Add onMounted to the vue import.

Merge request reports

Loading