Crate leptos_dom

Source
Expand description

DOM helpers for Leptos.

Modules§

helpers
A variety of DOM utility functions.
logging
Utilities for simple isomorphic logging to the console or terminal. Utilities for simple isomorphic logging to the console or terminal.

Macros§

debug_warn
Uses println!()-style formatting to log warnings to the console (in the browser) or via eprintln!() (if not in the browser), but only if it’s a debug build.
error
Uses println!()-style formatting to log errors to the console (in the browser) or via eprintln!() (if not in the browser).
log
Uses println!()-style formatting to log something to the console (in the browser) or via println!() (if not in the browser).
warn
Uses println!()-style formatting to log warnings to the console (in the browser) or via eprintln!() (if not in the browser).