frontend/components/ui/PodPicker.vue
2025-12-25 13:43:17 +01:00

21 lines
359 B
Vue

<template>
<div class="pod-picker base-shape">
<div v-for="pod in pods">
<p>{{ pod.metadata.name }}</p>
</div>
</div>
</template>
<script setup lang="ts">
import type {Pod} from "~/classes/Pod";
defineProps<{
pods: Pod[]
}>()
</script>
<style scoped>
.pod-picker {
background-color: var(--tile-color);
}
</style>