thaw/demo_markdown/docs/modal/mod.md
2024-02-09 22:47:46 +08:00

787 B

Modal

let show = create_rw_signal(false);

view! {
    <Button on_click=move |_| show.set(true)>"Open Modal"</Button>
    <Modal title="title" show>
        "hello"
    </Modal>
}

Modal Props

Name Type Default Description
show Model<bool> Whether to show modal.
title MaybeSignal<String> Default::default() Modal title.
children Children Modal's content.

Modal Slots

Name Default Description
ModalFooter None Footer content.