14 lines
304 B
Vue
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>
|