💄 Better products

This commit is contained in:
2024-08-22 17:32:56 +08:00
parent 0c4e363d95
commit 94ebd2581b
16 changed files with 170 additions and 14 deletions

View File

@ -37,6 +37,10 @@ definePageMeta({
alias: ["/auth/mfa"],
})
useHead({
title: t('signInTitle'),
})
const route = useRoute()
const loading = ref(false)

View File

@ -102,6 +102,10 @@ const error = ref<string | null>(null)
const { t } = useI18n()
const config = useRuntimeConfig()
useHead({
title: t('signUpTitle'),
})
const route = useRoute()
const router = useRouter()

View File

@ -43,6 +43,17 @@
<content-renderer-markdown :value="page" />
</content-renderer>
</article>
<div class="flex justify-start mt-5">
<v-btn
v-if="page?.url"
variant="plain"
prepend-icon="mdi-launch"
:text="t('open')"
:href="page?.url"
target="_blank"
/>
</div>
</v-container>
</template>