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