Skip to content

Mettle易用、快速、灵活的JavaScript库

用于构建用户界面

Mettle
jsx
function Counter() {
  const count = signal(0);
  const add = () => count.value++;

  return <button onClick={add}>{count.value}</button>;
}

基于 MIT 许可发布