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/SkillList.vue
2018-03-03 18:12:33 -05:00

25 lines
364 B
Vue

<template>
<span class="tags has-addons">
<skill-tag v-for="skill in skills" :key="skill.order" :skill="skill"/>
</span>
</template>
<script>
import SkillTag from './SkillTag'
export default {
components: {SkillTag},
name: 'skill-list',
props: {
skills: {
type: Array,
required: true
}
}
}
</script>
<style scoped>
</style>