Replies: 1 comment 4 replies
-
Leptos can be compatible with HTMX's way of doing this, of course, if you simply want to use Leptos for server-side templating and use HTMX to fetch partials from the frontend. I do have plans for client-side routing with islands -- i.e., it works as the current islands mode does, but rather than full-page refreshes it enables client-side routing. (See the roadmap issue.) That works is being enabled by the current rewrite that is moving toward 0.7. This model is relatively similar to something like React Server Components. I haven't used Fresh Partials but it looks somewhat similar to that but maybe less manual? Not sure. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
HTMX and Fresh allows a GET/POST request submitted through
form
ora
tags to fetch only partial HTML content, and insert it or replace a small piece of the current page.Is this something that Leptos supports or plans to support?
Beta Was this translation helpful? Give feedback.
All reactions