You've already forked AstralRinth
forked from didirus/AstralRinth
18 lines
385 B
Vue
18 lines
385 B
Vue
<template>
|
|
<ReportView
|
|
:auth="auth"
|
|
:report-id="route.params.id"
|
|
:breadcrumbs-stack="[{ href: '/moderation/reports', label: 'Reports' }]"
|
|
/>
|
|
</template>
|
|
<script setup>
|
|
import ReportView from "~/components/ui/report/ReportView.vue";
|
|
|
|
const auth = await useAuth();
|
|
const route = useNativeRoute();
|
|
|
|
useHead({
|
|
title: `Report ${route.params.id} - Modrinth`,
|
|
});
|
|
</script>
|