摘要: 初始化一个项目 npm init -y npm init -y 安装一些依赖 npm install 名称 --save 例如 npm install vue axios bootstrap --save --save 表示开发和上线都要用 --save dev 表示开始时候用,上线丢掉 npm i 阅读全文
posted @ 2017-09-23 20:37 八bug哥哥 阅读(438) 评论(0) 推荐(1) 编辑
摘要: import React,{Component} from 'react' import ReactDOM from 'react-dom' class App extends Component{ //给一个初始化状态 constructor(){ super(); this.state={ result:0 ... 阅读全文
posted @ 2017-09-23 19:49 八bug哥哥 阅读(2060) 评论(0) 推荐(0) 编辑
摘要: import React,{Component} from 'react' import ReactDOM from 'react-dom' class ChildCounter extends Component{ render(){ return( {this.props.count} ... 阅读全文
posted @ 2017-09-23 16:21 八bug哥哥 阅读(634) 评论(0) 推荐(0) 编辑