mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-30 07:10:03 +00:00
26 lines
350 B
Vue
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>
|