provisionserver job

This commit is contained in:
2025-03-28 17:16:19 +00:00
parent 350cf6e240
commit e2e83b9b7d
2 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<script setup lang="ts">
import AppLayout from '@/layouts/AppLayout.vue';
import { type BreadcrumbItem } from '@/types';
import { Head } from '@inertiajs/vue3';
import PlaceholderPattern from '../components/PlaceholderPattern.vue';
const props = defineProps({
server: {
type: Object,
required: true,
},
});
</script>
<template>
<Head :title="server.name" />
<AppLayout>
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
{{ server }}
</div>
</AppLayout>
</template>