16 lines
270 B
Vue
16 lines
270 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
label: string;
|
|
instance: string;
|
|
status: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="instance-card">
|
|
<span>{{ label }}</span>
|
|
<strong>{{ instance }}</strong>
|
|
<small>{{ status }}</small>
|
|
</div>
|
|
</template>
|