flamenco/web/app/src/components/TabItem.vue
Francesco Siddi f6b593f660 Add Tab components
With these components it is possible organize content through tabs.

Use the following:

<TabsWrapper>
  <TabItem title="Tab 1">Tab 1 content</TabItem>
  <TabItem title="Tab 2">Tab 2 content</TabItem>
</TabsWrapper>

Inspired by work from matheus-alpe.
2022-07-05 18:31:13 +02:00

14 lines
238 B
Vue

<script setup>
import { inject } from "vue";
const props = defineProps({
title: String,
});
const selectedTitle = inject("selectedTitle");
</script>
<template>
<div v-show="selectedTitle === title">
<slot />
</div>
</template>