This commit is contained in:
Simon Pocrnjič
2025-01-02 18:38:47 +01:00
parent 0c3bbfe18f
commit 0f8cfd3f16
41 changed files with 2013 additions and 591 deletions
+25
View File
@@ -0,0 +1,25 @@
<script setup>
import { inject } from 'vue';
defineProps({
name: {
type: String,
default: ''
},
title: {
stype: String,
default: ''
}
});
const selected = inject('selected');
</script>
<template>
<div class="py-4 px-2" role="tabpanel" v-show="selected === name">
<slot />
</div>
</template>