q-slot-default Test
Missing slots render q-slot-default content. Explicit empty and comment-only slots suppress the default. Back to test index
waiting
q-component notice-card {
q-slot-default body {
span.default-marker { text { Default body } }
}
div.result {
slot { body }
}
}
notice-card missingDefault { }
notice-card explicitEmpty {
body { }
}
notice-card commentOnly {
body {
// intentionally empty
/* comment-only body */
}
}
notice-card explicitContent {
body {
span.explicit-marker { text { Explicit body } }
}
}