mirror of https://github.com/rancher/dashboard.git
31 lines
378 B
Vue
31 lines
378 B
Vue
<script>
|
|
export default {
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return { active: null };
|
|
}
|
|
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<section
|
|
v-show="active"
|
|
:id="name"
|
|
:aria-hidden="!active"
|
|
role="tabpanel"
|
|
>
|
|
<slot />
|
|
</section>
|
|
</template>
|