Files
Native-Router-Vue/apps/origins-demo/src/components/InstanceCard.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>