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