feat: add zine-direction shared components
This commit is contained in:
parent
dbb3fbbc1b
commit
8b3daadadd
10 changed files with 594 additions and 176 deletions
10
app/components/CircleBadge.vue
Normal file
10
app/components/CircleBadge.vue
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<template>
|
||||
<span class="badge" :class="circle">{{ label || circle }}</span>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineProps({
|
||||
circle: { type: String, required: true },
|
||||
label: { type: String, default: '' },
|
||||
})
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue