lightview
Version:
Small, simple, powerful web UI and micro front end creation ... Great ideas from Svelte, React, Vue and Riot combined.
18 lines • 534 B
HTML
<html>
<head>
<meta charset="UTF-8">
<title>Lightview:Examples:Message</title>
<script src="../lightview2.js?as=x-body"></script>
</head>
<body value="Hello!">
${value}
<script id="lightview">
/*(document.currentComponent||=document.body).mount = function() {
this.variables({value:"string"},{imported});
}*/
(document.currentComponent||(document.currentComponent=document.body)).mount = function() {
this.variables({value:"string"},{imported});
}
</script>
</body>
</html>