leptos/examples/counters_stable
Greg Johnston 67300adf41
fix: regression in ability to use signals directly in the view in stable (#1254)
2023-06-30 11:59:29 -04:00
..
e2e test(counters_stable): add missing e2e tests (#1251) 2023-06-30 08:52:48 -04:00
src fix: regression in ability to use signals directly in the view in stable (#1254) 2023-06-30 11:59:29 -04:00
.gitignore test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00
Cargo.toml change: migrate to `nightly` and `csr` features rather than `stable` and `default-features = false` (#1227) 2023-06-26 21:12:14 -04:00
Makefile.toml test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00
README.md Fix a large number of small issues in docs (#386) 2023-01-26 21:44:01 -05:00
index.html test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00
package.json test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00

README.md

Leptos Counters Example on Rust Stable

This example showcases a basic Leptos app with many counters. It is a good example of how to setup a basic reactive app with signals and effects, and how to interact with browser events. Unlike the other counters example, it will compile on Rust stable, because it has the stable feature enabled.

Client Side Rendering

To run it as a client-side app, you can issue trunk serve --open in the root. This will build the entire app into one CSR bundle.

If you don't have trunk installed, click here for install instructions.