V2: Origin based animations, Gesture Builder, New Demo, non-url-based-routing. Massive improvements.
This commit is contained in:
15
apps/origins-demo/src/components/InstanceCard.vue
Normal file
15
apps/origins-demo/src/components/InstanceCard.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user