You've already forked AstralRinth
forked from didirus/AstralRinth
* New purchase flow for servers, region selector, etc. * Lint * Lint * Fix expanding total
23 lines
636 B
Vue
23 lines
636 B
Vue
<template>
|
|
<ServerInstallation
|
|
:server="props.server"
|
|
:backup-in-progress="props.backupInProgress"
|
|
@reinstall="emit('reinstall')"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { Server } from "~/composables/pyroServers";
|
|
import type { BackupInProgressReason } from "~/pages/servers/manage/[id].vue";
|
|
import ServerInstallation from "~/components/ui/servers/ServerInstallation.vue";
|
|
|
|
const props = defineProps<{
|
|
server: Server<["general", "content", "backups", "network", "startup", "ws", "fs"]>;
|
|
backupInProgress?: BackupInProgressReason;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
reinstall: [any?];
|
|
}>();
|
|
</script>
|