Level: beginner • Mithril.js Version: latest
This example shows how to route between two pages in a Mithril.js application. The routing example was taken from the official website at https://mithril.js.org/index.html#routing.
Type | Name | URL |
---|---|---|
script | mithril@latest | https://unpkg.com/mithril@latest |
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Routing</title>
</head>
<body>
</body>
</html>
let root = document.body
let count = 0
let Hello = {
view: function() {
return m("main", [
m("h1", {
class: "title"
}, "My first app"),
m("button", {
onclick: function() {count++}
}, count + " clicks"),
])
}
}
let Splash = {
view: function() {
return m("a", {
href: "#!/hello"
}, "Enter!")
}
}
m.route(root, "/splash", {
"/splash": Splash,
"/hello": Hello,
})
The snippet is using the most current version of Mithril.js framework. It is aimed at beginners and shows some basic recipes.
In addition to the Mithril.js hyperscript function m(), here we can see an example of Mithril.js' m.route
API method.
The example was contributed by mithril and last modified on 16 October 2021. Click here to see more examples contributed by the author.
If anyone has some improvements, that should be addressed, let me know by opening an issue. Or simply fork the repository on GitHub, push your commits and send a pull request. For starting your work, you can click the edit link below. Thanks for contributing.