13 lines
No EOL
278 B
HTML
13 lines
No EOL
278 B
HTML
<script src="mithril.js"></script>
|
|
<script type="text/javascript">
|
|
var app = {}
|
|
app.controller = function() {
|
|
this.index = 0
|
|
m.request({method: "GET", url: "/test.html"})
|
|
}
|
|
app.view = function(ctrl) {
|
|
return m("div", "hello" + ctrl.index)
|
|
}
|
|
|
|
m.render(document, app)
|
|
</script> |