mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
Co-authored-by: mattwr18 <mattwr18@gmail.com> Co-authored-by: Raphael Beer <raphael.beer@protonmail.com>
21 lines
323 B
Vue
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>
|