Files
pichunt/app/pages/hunt/[huntSlug]/[questSlug]/index.vue
T
2025-08-01 01:14:34 +02:00

14 lines
304 B
Vue

<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>