leptos/examples/counters_stable
Joseph Cruz 8c5ab99fa7
build(examples): pull up compile tasks (#1417)
* build(examples): pull up compile tasks

* build(examples): set toolchain for compiles tasks

* build(examples): set toolchain for build and check

* build(examples): set toolchain of other examples
2023-07-24 11:35:34 -04:00
..
e2e test(counters_stable/wasm): enter count (#1307) 2023-07-08 12:07:11 -04:00
src test(counters_stable/wasm): enter count (#1307) 2023-07-08 12:07:11 -04:00
tests/web test(counters_stable/wasm): enter count (#1307) 2023-07-08 12:07:11 -04:00
.gitignore test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00
Cargo.toml test(counters_stable/wasm): enter count (#1307) 2023-07-08 12:07:11 -04:00
index.html test(counters_stable): add playwright tests (#1235) 2023-06-26 21:11:09 -04:00
Makefile.toml build(examples): pull up compile tasks (#1417) 2023-07-24 11:35:34 -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.