1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-30 07:10:03 +00:00
bramw_baserow/web-frontend/modules/core/components/Tab.vue
2022-11-25 08:23:38 +00:00

26 lines
350 B
Vue

<template lang="html">
<div v-show="isActive">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'Tab',
props: {
title: {
type: String,
default: 'Tab',
},
disabled: {
type: Boolean,
default: () => false,
},
},
data() {
return {
isActive: false,
}
},
}
</script>