mirror of
https://github.com/kihashi/stardew_community_checklist.git
synced 2025-10-19 08:03:17 +00:00
21 lines
415 B
Vue
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>
|