You've already forked AstralRinth
forked from didirus/AstralRinth
* refactor: start refactor of pyro servers module-based class * refactor: finish modules * refactor: start on type checking + matching api * refactor: finish pyro servers composable refactor * refactor: pyro -> modrinth * fix: import not refactored * fix: broken power action enums * fix: remove pyro mentions * fix: lint * refactor: fix option pages * fix: error renames * remove empty pyro-servers.ts file --------- Signed-off-by: IMB11 <hendersoncal117@gmail.com> Co-authored-by: Prospector <prospectordev@gmail.com>
22 lines
469 B
Vue
22 lines
469 B
Vue
<template>
|
|
<div class="flex h-full w-full flex-col">
|
|
<NuxtPage :route="route" :server="props.server" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ModrinthServer } from "~/composables/servers/modrinth-servers.ts";
|
|
|
|
const route = useNativeRoute();
|
|
|
|
const props = defineProps<{
|
|
server: ModrinthServer;
|
|
}>();
|
|
|
|
const data = computed(() => props.server.general);
|
|
|
|
useHead({
|
|
title: `Content - ${data.value?.name ?? "Server"} - Modrinth`,
|
|
});
|
|
</script>
|