1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/src/components/item-card/SeasonList.vue
2023-06-05 12:33:42 +10:00

21 lines
415 B
Vue

<script setup lang="ts">
import SeasonTag from './SeasonTag.vue'
withDefaults(defineProps<{ seasons: string[] }>(), {
seasons: () => ['spring', 'summer', 'fall', 'winter']
})
</script>
<template>
<span class="tags has-addons">
<season-tag v-for="season in seasons" :key="season" :season="season" />
</span>
</template>
<style scoped>
.tags {
justify-content: center;
flex-wrap: no-wrap;
}
</style>