feat(registration): add title to tab

This commit is contained in:
DecDuck
2024-11-05 13:18:50 +11:00
parent 17971e0a5a
commit 7b0756c6bd

View File

@ -187,7 +187,7 @@
</template>
<script setup lang="ts">
import { XCircleIcon } from '@heroicons/vue/24/solid';
import { XCircleIcon } from "@heroicons/vue/24/solid";
const route = useRoute();
const router = useRouter();
@ -258,4 +258,8 @@ function register_wrapper() {
definePageMeta({
layout: false,
});
useHead({
title: "Create your Drop account",
});
</script>