* SEO/Metadata cleanup May split rules changes into its own PR * Revert rules/terms changes as they are now on a separate branch * Update [searchProjectType].vue * Update terms.vue
17 lines
321 B
Vue
17 lines
321 B
Vue
<template>
|
|
<div>
|
|
<section class="universal-card">
|
|
<h2>Reports</h2>
|
|
<ReportsList :auth="auth" />
|
|
</section>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import ReportsList from '~/components/ui/report/ReportsList.vue'
|
|
|
|
const auth = await useAuth()
|
|
useHead({
|
|
title: 'Active reports - Modrinth',
|
|
})
|
|
</script>
|