| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 | | <template> |  |   <div class="tab-panel" :style="rootStyle"> |  |     <slot /> |  |   </div> |  | </template> |  |   |  | <script> |  | export default { |  |   name: 'TabPanel', |  | }; |  | </script> |  |   |  | <script setup> |  | import { computed, getCurrentInstance, ref } from 'vue'; |  |   |  | const vm = getCurrentInstance(); |  | vm.parent.exposed.tabs.value.push(vm); |  |   |  | defineProps({ |  |   // Tabs 会用到 label |  |   label: { |  |     type: String, |  |     required: true, |  |   }, |  | }); |  |   |  | const active = ref(false); |  | const rootStyle = computed(() => ({ |  |   display: active.value ? 'block' : 'none', |  | })); |  |   |  | function changeActive(value) { |  |   active.value = value; |  | } |  |   |  | defineExpose({ |  |   changeActive, |  | }); |  | </script> | 
 |