Event that fires when a property is updated from within the app.
CustomEvent of type update:T with detail { value: DeckHtmlAttributes[P] }, where T is the name of the DeckHtmlAttribute that was updated.
update:T
{ value: DeckHtmlAttributes[P] }
T
.addEventListener('update:active', (event) => console.log("The 'active' attribute has been updated. Its new value is", event.detail.value)) Copy
.addEventListener('update:active', (event) => console.log("The 'active' attribute has been updated. Its new value is", event.detail.value))
Event that fires when a property is updated from within the app.