11 lines
509 B
Plaintext
11 lines
509 B
Plaintext
component NotificationList {
|
|
props {
|
|
title = ""
|
|
description = ""
|
|
empty = false
|
|
emptyText = "No items available."
|
|
class = ""
|
|
}
|
|
view { <section class="wire-catalog-collection {class}"><header data-show="title || description"><h2 data-show="title">{title}</h2><p data-show="description">{description}</p></header><div data-show="!empty" role="list" class="wire-catalog-collection__items"><slot /></div><p data-show="empty" role="status" class="wire-muted">{emptyText}</p></section> }
|
|
}
|