Solidjs就是我理想中的Rea

作者

NickScialli      译者

王强      策划

闫园园  

我大约在三年前开始在工作中使用React。巧合的是,当时正好是ReactHooks出来的时候。我当时的项目代码库有很多类组件,总让我觉得很笨重。

我们来看看下面的例子:一个每秒递增一次的计数器。

classCounterextendsReact.Component{constructor(){super();this.state={count:0};this.increment=this.increment.bind(this);}increment(){this.setState({count:this.state.count+1});}


转载请注明:http://www.aierlanlan.com/rzdk/163.html

  • 上一篇文章:
  •   
  • 下一篇文章: