Kyle Smith eee6cbabb2 Update Router book to reflect crate separation and need for `web` feature. (#873) 2 年之前
..
guide 4eefc3f854 chore: rename all &cx to cx, make clipppy happy 2 年之前
reference 7805b1ad63 docs: add simple router book 3 年之前
README.md eee6cbabb2 Update Router book to reflect crate separation and need for `web` feature. (#873) 2 年之前
SUMMARY.md 7805b1ad63 docs: add simple router book 3 年之前

README.md

Dioxus Router: Introduction

Whether or not you're building a website, desktop app, or mobile app, organizing your app's views into "pages" can be an effective method for organization and maintainability.

The dioxus-router crate contains the Router module. To add it to your project run:

cargo add dioxus-router

Be sure to include the web feature (--feature web) for deployment into a browser!

In this book you'll find a short guide to get up to speed with Dioxus Router, as well as the router's reference.