Progressive JavaScript Framework
- No boilerplate code
- Data Binding
- 5kb size
https://amalieiev.github.io/asic/
npm install asic
@Component({
template: `
<div>
<p>Inner component</p>
<p>{{ text }}</p>
</div>`
})
class SimpleText {
constructor() {
this.text = 'Simple text'
}
}
<SimpleText></SimpleText>
Example JSFiddle – Use this for issue reproduction.