29 lines
641 B
HTML
29 lines
641 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Riot todo</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="stylesheet" href="todo.css">
|
|
<script src="todo.riot" type="riot"></script>
|
|
<script src="https://unpkg.com/riot@10.1.2/riot+compiler.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<todo />
|
|
</body>
|
|
|
|
<script>
|
|
riot.compile().then(() => {
|
|
riot.mount('todo', {
|
|
title: 'I want to behave!',
|
|
todos: [
|
|
{ title: 'Avoid excessive caffeine', done: false ,id : 0},
|
|
{ title: 'Be less provocative', done: true , id:1},
|
|
{ title: 'Be nice to people', done: true, id:2}
|
|
]
|
|
})
|
|
})
|
|
</script>
|
|
</html>
|