f80a7189a0
* chore(fe2): upgrade to nuxt 3.8.2 * fix tailwind-theme build * readme update * removing storybook from fe2 :( * fix(fe2): codegen schema url resolution
18 lines
404 B
Vue
18 lines
404 B
Vue
<template>
|
|
<CommonBadge
|
|
color-classes="text-foreground-on-primary"
|
|
rounded
|
|
:style="{ backgroundColor: sourceApp.bgColor }"
|
|
>
|
|
{{ sourceApp.short }}
|
|
</CommonBadge>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import CommonBadge from '~~/src/components/common/Badge.vue'
|
|
import type { SourceAppDefinition } from '@speckle/shared'
|
|
|
|
defineProps<{
|
|
sourceApp: SourceAppDefinition
|
|
}>()
|
|
</script>
|