simpleviewjs
v1.0.17
Published
A singlefile view framekwork.
Downloads
2
Readme
Key Features
- No dependencies
- Very small
- Easy to use
How To Use
Either use a CDN:
<body>
<button sv-navigate="DocumentOverview">show</button>
<sv-document-overview>
<input sv-value="name" />
</sv-document-overview>
<script src="https://unpkg.com/simpleviewjs@latest/SimpleView.js"></script>
<script>
SimpleViewRepository.registerClass(class DocumentOverview extends SimpleView {
constructor() {
super();
this.props.name = 'Robin';
}
});
</script>
</body>
License
MIT