Alerts
2 years ago
BoxActions
2 years ago
PaymentsPage
2 years ago
TableColumns
2 years ago
VuiBoxes
2 years ago
ActionsWithFilters.vue
2 years ago
ChooseAction.vue
2 years ago
ClearFiltersButton.vue
2 years ago
DetailsTableWithStore.vue
2 years ago
EntriesList.vue
2 years ago
EntriesTable.vue
2 years ago
EntriesTableSkeleton.vue
2 years ago
EntryColumnList.vue
2 years ago
EntryColumnsTable.vue
2 years ago
FormBuilderPage.vue
2 years ago
PageActions.vue
2 years ago
PostBoxContainer.vue
2 years ago
PostBoxGrid.vue
2 years ago
PostBoxSimple.vue
2 years ago
PostBoxSkeleton.vue
2 years ago
PostBoxTable.vue
2 years ago
SideBarBoxes.vue
2 years ago
TablePagination.vue
2 years ago
PostBoxContainer.vue
27 lines
| 1 | <template> |
| 2 | <div |
| 3 | :id="wrapId" |
| 4 | class="postbox-container" |
| 5 | > |
| 6 | <div :id="id" :class="classes"> |
| 7 | <slot></slot> |
| 8 | </div> |
| 9 | </div> |
| 10 | </template> |
| 11 | |
| 12 | <script> |
| 13 | export default { |
| 14 | name: "PostBoxContainer", |
| 15 | props: { |
| 16 | wrapId: String, |
| 17 | id: String, |
| 18 | classes: String |
| 19 | }, |
| 20 | computed: { |
| 21 | } |
| 22 | } |
| 23 | </script> |
| 24 | |
| 25 | <style> |
| 26 | |
| 27 | </style> |