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
ListComponents.vue
31 lines
| 1 | <template> |
| 2 | <div class="jfb-list-components"> |
| 3 | <div |
| 4 | v-for="( component, index ) in components" |
| 5 | :key="'entry_' + index" |
| 6 | class="jfb-list-components-item" |
| 7 | > |
| 8 | <keep-alive> |
| 9 | <component |
| 10 | v-bind:is="component" |
| 11 | :scope="scope" |
| 12 | /> |
| 13 | </keep-alive> |
| 14 | </div> |
| 15 | <slot></slot> |
| 16 | </div> |
| 17 | </template> |
| 18 | |
| 19 | <script> |
| 20 | export default { |
| 21 | name: "ListComponents", |
| 22 | props: { |
| 23 | components: Array, |
| 24 | scope: String, |
| 25 | }, |
| 26 | } |
| 27 | </script> |
| 28 | |
| 29 | <style> |
| 30 | |
| 31 | </style> |