Joined
Last Online
Recent Posts
posted in bug、问题、建议 read more

如题,谁知道啊支持sqlite吗

posted in 技术交流 read more

"ui";
ui.layout(
<vertical padding="16">
<button id="click_me" text="点我" w="auto"/>
</vertical>
);
var i = 0;
ui.click_me.on("click", ()=>{
i++;
toast("点击第"+i+"次");
});