leptos/examples/counters_stable
Joseph Cruz df4ce904a0
test(counters_stable): add missing e2e tests (#1251)
* test(counters_stable): remove unused ids

* test(counters_stable): enter count

* refactor(counters_stable/e2e): improve test names

* refactor(counters_stable): move page object

* refactor(counters_stable/e2e): target nth counter

* test(counters_stable): remove counter

* refactor(counters_stable/e2e): change description
2023-06-30 08:52:48 -04:00
..
e2e test(counters_stable): add missing e2e tests (#1251) 2023-06-30 08:52:48 -04:00
src test(counters_stable): add missing e2e tests (#1251) 2023-06-30 08:52:48 -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
index.html test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00
Makefile.toml 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 Fix a large number of small issues in docs (#386) 2023-01-26 21:44:01 -05:00

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.