Alina Beck 7a818a04a7 refactor and design search results page (wip)
Co-authored-by: mattwr18 <mattwr18@gmail.com>
Co-authored-by: Raphael Beer <raphael.beer@protonmail.com>
2020-03-18 14:33:01 +01:00

21 lines
323 B
Vue

<template>
<ul class="tabs">
<li v-for="tab in tabs" :key="tab.type" class="tab">
<button @click="$emit('openTab', tab.type)">
{{ tab.title }}
</button>
</li>
</ul>
</template>
<script>
export default {
props: {
tabs: {
type: Array,
required: true,
}
},
}
</script>