Add hunt detail

This commit is contained in:
2025-08-01 01:14:34 +02:00
parent 15f4f74cb7
commit 28b42762fe
17 changed files with 597 additions and 49 deletions
@@ -0,0 +1,13 @@
<script setup lang="ts">
const app = useNuxtApp();
const { huntSlug, questSlug } = app.$slugData;
</script>
<template>
<h1>{{ huntSlug!.name }} - {{ questSlug!.name }}</h1>
<VaButton :to="$localePath(`/hunt/${sluggy(huntSlug!)}`)"
>Back to Hunt</VaButton
>
</template>
<style scoped></style>