Evan Almloff ed4709101c fix duplicate example names há 2 anos atrás
..
examples ed4709101c fix duplicate example names há 2 anos atrás
src 80a8310297 switch debug logs to trace in the router and web crates há 2 anos atrás
tests e6920e9b34 chore: fix web há 2 anos atrás
.gitignore e04a6d63a5 chore: move tests out of core and into the top level crate há 3 anos atrás
CHANGELOG.md 56f3002aed feat: add changelogs há 3 anos atrás
Cargo.toml ec8b77ab32 Remove unused simple-logger há 2 anos atrás
Makefile.toml bd565bb65f improve Makefile tests há 3 anos atrás
README.md eee6cbabb2 Update Router book to reflect crate separation and need for `web` feature. (#873) há 2 anos atrás
usage.md 4eefc3f854 chore: rename all &cx to cx, make clipppy happy há 2 anos atrás
webdriver.json ee49fc27ff fix some newlines há 3 anos atrás

README.md

Dioxus Router

Crates.io MIT licensed Build Status Discord chat

Website | Guides | API Docs | Chat

Overview

Dioxus Router is a first-party Router for all your Dioxus Apps. It provides a React-Router-style interface using somewhat loose typing rules.

fn app() {
    cx.render(rsx! {
        Router {
            Route { to: "/", Component {} },
            Route { to: "/blog", Blog {} },
            Route { to: "/blog/:id", BlogPost {} },
        }
    })
}

You need to enable the right features for the platform you're targeting since these are not determined automatically!

Contributing

  • Report issues on our issue tracker.
  • Join the discord and ask questions!

License

This project is licensed under the MIT license.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional terms or conditions.