You've already forked AstralRinth
forked from didirus/AstralRinth
16a6f7b352
* Modrinth Hosting rebranding * fix capitalization issue * fix issues
23 lines
580 B
Vue
23 lines
580 B
Vue
<template>
|
|
<ServerInstallation
|
|
:server="props.server"
|
|
:backup-in-progress="props.backupInProgress"
|
|
@reinstall="emit('reinstall')"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import ServerInstallation from '~/components/ui/servers/ServerInstallation.vue'
|
|
import type { ModrinthServer } from '~/composables/servers/modrinth-servers.ts'
|
|
import type { BackupInProgressReason } from '~/pages/hosting/manage/[id].vue'
|
|
|
|
const props = defineProps<{
|
|
server: ModrinthServer
|
|
backupInProgress?: BackupInProgressReason
|
|
}>()
|
|
|
|
const emit = defineEmits<{
|
|
reinstall: [any?]
|
|
}>()
|
|
</script>
|