Files
speckle-server/packages/frontend-2/components/server-management/Card.vue
T
Kristaps Fabians Geikins f80a7189a0 chore(fe2): upgrade to nuxt 3.8.2 (#1887)
* chore(fe2): upgrade to nuxt 3.8.2

* fix tailwind-theme build

* readme update

* removing storybook from fe2 :(

* fix(fe2): codegen schema url resolution
2023-11-29 10:22:17 +02:00

23 lines
487 B
Vue

<template>
<div>
<div class="bg-foundation p-4 flex flex-col gap-4 rounded-md shadow-md">
<ServerManagementCardRow
v-for="info in serverInfo"
:key="info.title"
:title="info.title"
:value="info.value"
:cta="info.cta"
:icon="info.icon"
/>
</div>
</div>
</template>
<script lang="ts" setup>
import type { CardInfo } from '~~/lib/server-management/helpers/types'
defineProps<{
serverInfo: CardInfo[]
}>()
</script>