lightview
Version:
Small, simple, powerful web UI and micro front end creation ... Great ideas from Svelte, React, Vue and Riot combined.
17 lines • 423 B
HTML
<html lang="en">
<head>
<script src="../javascript/lightview.js?as=x-body"></script>
</head>
<body>
<div class="message">${message}</div>
<script id="lightview">
currentComponent.mount = function() {
this.variables({message:"string"},{set:"Hello world!"});
}
</script>
<style>
.message { font-size: large }
</style>
</body>
</html>