ColumnWrapper.vue
2 years ago
CxVuiCollapseMini.vue
2 years ago
CxVuiDate.vue
2 years ago
CxVuiFSelect.vue
2 years ago
CxVuiPopup.vue
2 years ago
CxVuiSelect.vue
2 years ago
CxVuiTabs.vue
2 years ago
CxVuiTabsPanel.vue
2 years ago
Delimiter.vue
2 years ago
DetailsTable.vue
2 years ago
DetailsTableRow.vue
2 years ago
DetailsTableRowValue.vue
2 years ago
ExternalLink.vue
2 years ago
ListComponents.vue
2 years ago
PrintButton.vue
2 years ago
RowWrapper.vue
2 years ago
Tooltip.vue
2 years ago
CxVuiTabsPanel.vue
42 lines
| 1 | <template> |
| 2 | <div class="cx-vui-tabs-panel" v-show="show"> |
| 3 | <slot></slot> |
| 4 | </div> |
| 5 | </template> |
| 6 | |
| 7 | <script> |
| 8 | export default { |
| 9 | name: 'cx-vui-tabs-panel', |
| 10 | props: { |
| 11 | tab: { |
| 12 | type: String, |
| 13 | default: '' |
| 14 | }, |
| 15 | name: { |
| 16 | type: String, |
| 17 | default: '' |
| 18 | }, |
| 19 | label: { |
| 20 | type: String, |
| 21 | default: '' |
| 22 | }, |
| 23 | disabled: { |
| 24 | type: Boolean, |
| 25 | default: false, |
| 26 | }, |
| 27 | icon: { |
| 28 | type: [ Object, String ], |
| 29 | default: '', |
| 30 | } |
| 31 | }, |
| 32 | data() { |
| 33 | return { |
| 34 | show: false, |
| 35 | }; |
| 36 | }, |
| 37 | }; |
| 38 | </script> |
| 39 | |
| 40 | <style> |
| 41 | |
| 42 | </style> |