diff --git a/pages/login.vue b/pages/login.vue index 8e4998a..f51b6a5 100644 --- a/pages/login.vue +++ b/pages/login.vue @@ -5,9 +5,12 @@ definePageMeta({ layout: false, }) -const isLoggedIn = useIsLoggedIn() - +const head = useLocaleHead({ + addDirAttribute: true, + addSeoAttributes: true, +}) const { t } = useI18n() +const isLoggedIn = useIsLoggedIn() async function login(form) { const { error } = await useApi('/login', { @@ -31,6 +34,7 @@ const schema = {