APL/DEV 4.3/TP07/html/index.html

29 lines
753 B
HTML
Raw Permalink Normal View History

2023-03-24 16:04:40 +01:00
<!doctype html>
<html>
<head>
<title>Riot todo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/todo.css">
</head>
<body>
<todo></todo>
<script src="tags/todo.riot" type="riot"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/riot/7.1.0/riot+compiler.min.js" integrity="sha512-sSGKGR9MvL0bUx3CScaBb56crXwspwDkL/JnB0IrLFQfw3uvSUlITQtsTtDZctshhv5wdwIt+qZeN8zThRF4Dw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="js/serviceAjax.js"></script>
<script>
riot.compile().then(() => {
let sa=makeServiceAjax();
riot.install(function(component){
component.sa = sa;
});
riot.mount('todo')
})
</script>
</body>
</html>