mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Fix dangling urls (#2728)
This commit is contained in:
parent
475cf20a86
commit
0bdbd95328
@ -17,7 +17,7 @@ trunk serve --release
|
||||
|
||||
## Concepts
|
||||
|
||||
The example uses [`gloo::timers`](https://gloo-rs.web.app/docs/timer) implementation of `setInterval` to drive the Yew game loop.
|
||||
The example uses [`gloo::timers`](https://docs.rs/gloo-timers/latest/gloo_timers/) implementation of `setInterval` to drive the Yew game loop.
|
||||
|
||||
## Improvements
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ The contents of the selected file are then rendered to the page either as a whol
|
||||
|
||||
## Concepts
|
||||
|
||||
Demonstrates reading from files in Yew with the help of [`gloo::file`](https://gloo-rs.web.app/docs/file).
|
||||
Demonstrates reading from files in Yew with the help of [`gloo::file`](https://docs.rs/gloo-file/latest/gloo_file/).
|
||||
|
||||
## Improvements
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@ This is an implementation of [TodoMVC](http://todomvc.com/) for Yew using functi
|
||||
## Concepts
|
||||
|
||||
- Uses [`function_components`](https://yew.rs/docs/next/concepts/function-components/introduction)
|
||||
- Uses [`gloo_storage`](https://gloo-rs.web.app/docs/storage) to persist the state
|
||||
- Uses [`gloo_storage`](https://docs.rs/gloo-storage/latest/gloo_storage/) to persist the state
|
||||
|
||||
## Improvements
|
||||
|
||||
|
||||
@ -15,5 +15,5 @@ trunk serve --release
|
||||
|
||||
## Concepts
|
||||
|
||||
- Uses [`gloo_timer`](https://gloo-rs.web.app/docs/timer) to automatically step the simulation.
|
||||
- Uses [`gloo_timer`](https://docs.rs/gloo-timers/latest/gloo_timers/) to automatically step the simulation.
|
||||
- Logs to the console using the [`weblog`](https://crates.io/crates/weblog) crate.
|
||||
|
||||
@ -6,8 +6,8 @@ This is a technical demonstration for how to use timeouts and intervals.
|
||||
|
||||
## Concepts
|
||||
|
||||
The example mainly demonstrates the use of [`gloo_timer`](https://gloo-rs.web.app/docs/timer) and
|
||||
[`gloo_console_timer`](https://gloo-rs.web.app/docs/console-timer) but also makes use of some
|
||||
The example mainly demonstrates the use of [`gloo_timer`](https://docs.rs/gloo-timers/ ) and
|
||||
[`gloo_console_timer`](https://docs.rs/gloo-console/latest/gloo_console/struct.Timer.html) but also makes use of some
|
||||
more advanced web console features.
|
||||
|
||||
## Improvements
|
||||
|
||||
@ -9,7 +9,7 @@ including: all entries, entered text and chosen filter.
|
||||
|
||||
## Concepts
|
||||
|
||||
- Uses [`gloo_storage`](https://gloo-rs.web.app/docs/storage) to persist the state
|
||||
- Uses [`gloo_storage`](https://docs.rs/gloo-storage/latest/gloo_storage/) to persist the state
|
||||
- [`Refs`] are used to manipulate DOM elements after they're rendered (to automatically focus input fields for instance)
|
||||
|
||||
## Improvements
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user