
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.
14 lines
238 B
Vue
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>
|