mirror of https://github.com/rancher/dashboard.git
57 lines
760 B
Vue
57 lines
760 B
Vue
<script>
|
|
export default {
|
|
inject: ['addTab', 'removeTab'],
|
|
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
weight: {
|
|
type: Number,
|
|
default: 0,
|
|
required: false,
|
|
},
|
|
canToggle: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return { active: null };
|
|
},
|
|
|
|
watch: {
|
|
active(neu) {
|
|
if (neu) {
|
|
this.$emit('active');
|
|
}
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.addTab(this);
|
|
},
|
|
|
|
beforeDestroy() {
|
|
this.removeTab(this);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<section
|
|
v-show="active"
|
|
:id="name"
|
|
:aria-hidden="!active"
|
|
role="tabpanel"
|
|
>
|
|
<slot />
|
|
</section>
|
|
</template>
|