Files
Website/resources/js/components/SMTab.vue

27 lines
477 B
Vue

<template>
<div v-show="label == selectedLabel" class="tab-content">
<slot></slot>
</div>
</template>
<script setup lang="ts">
import { inject } from "vue";
const props = defineProps({
label: {
type: String,
required: true,
},
});
const selectedLabel = inject("selectedLabel");
</script>
<style lang="scss">
.tab-content {
padding: map-get($spacer, 3);
background-color: #fff;
border: 1px solid $border-color;
}
</style>