button.php
2 years ago
checkbox.php
2 years ago
collapse.php
2 years ago
colorpicker.php
2 years ago
component-wrapper.php
2 years ago
dimensions.php
2 years ago
f-select.php
2 years ago
fselect.php
2 years ago
iconpicker.php
2 years ago
input.php
2 years ago
list-table-heading.php
2 years ago
list-table-item.php
2 years ago
list-table.php
2 years ago
notice.php
2 years ago
pagination.php
2 years ago
popup.php
2 years ago
radio.php
2 years ago
repeater-item.php
2 years ago
repeater.php
2 years ago
select.php
2 years ago
switcher.php
2 years ago
tabs-panel.php
2 years ago
tabs.php
2 years ago
textarea.php
2 years ago
time.php
2 years ago
title.php
2 years ago
wp-media.php
2 years ago
list-table.php
19 lines
| 1 | <div class="cx-vue-list-table"> |
| 2 | <div class="cx-vue-list-table__heading"> |
| 3 | <slot name="heading"></slot> |
| 4 | </div> |
| 5 | <div |
| 6 | class="cx-vue-list-table__items" |
| 7 | v-if="! isEmpty" |
| 8 | > |
| 9 | <slot name="items"></slot> |
| 10 | </div> |
| 11 | <div |
| 12 | class="cx-vue-list-table__items is-empty" |
| 13 | v-else |
| 14 | v-html="emptyMessage" |
| 15 | ></div> |
| 16 | <div class="cx-vue-list-table__footer"> |
| 17 | <slot name="footer"></slot> |
| 18 | </div> |
| 19 | </div> |