扫一扫分享
marko是来自 eBay 的一个友好高性能的 UI 库 ,旨在简化 Web 开发。
通过流和更小的(~10kb gzip)运行时加速加载
从简单的HTML模板到功能强大的UI组件
Marko正在为像ebay.com这样的高流量网站提供支持。
class {
onCreate() {
this.state = { count:0 };
}
increment() {
this.state.count++;
}
}
style {
.count {
color:#09c;
font-size:3em;
}
.example-button {
font-size:1em;
padding:0.5em;
}
}
<div.count>
${state.count}
</div>
<button.example-button on-click('increment')>
Click me!
</button>
手机预览