Files
web_2025/R4.01_R4.A.10/td_tp/tp5/src/ex2/index.html
T
2026-03-09 14:55:40 +01:00

43 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Riot.js Radar Chart</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/riot/10.0.1/riot+compiler.min.js"></script>
<script src="helper.js"></script>
</head>
<body>
<!-- app -->
<app></app>
<!-- tags -->
<script data-src="app.riot" type="riot"></script>
<script data-src="components/polygraph.riot" type="riot"></script>
<script data-src="components/text.riot" type="riot"></script>
<script>
riot
.compile()
.then(() => {
riot.mount('app', {
title: 'Riot.js Radar Chart',
stats: [
{ label: 'A', value: 100 },
{ label: 'B', value: 100 },
{ label: 'C', value: 100 },
{ label: 'D', value: 100 },
{ label: 'E', value: 100 },
{ label: 'F', value: 100 }
]
})
})
.catch(e => {
console.error(e)
})
</script>
</body>
</html>