Skip to content

Instantly share code, notes, and snippets.

@tivac
Last active April 11, 2017 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tivac/c00c04833e0883e658ef659da44ea469 to your computer and use it in GitHub Desktop.
Save tivac/c00c04833e0883e658ef659da44ea469 to your computer and use it in GitHub Desktop.
Mithril Component Example
var root = document.body
var count = 0 // added a variable
var Hello = {
view: function() {
return m("main", [
m("h1", {
class: "title"
}, "My first app"),
// changed the next line
m("button", {
onclick: function() {count++}
}, count + " clicks")
])
}
}
m.mount(root, Hello)
<script src="https://unpkg.com/mithril"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment