摘要: 继承:// 寄生式继承(圣杯) Father.prototype.name = 'Hello' //在Father类中添加一个name属性 function Father() {} //构造Father类 function Son() {} //构造Son... 阅读全文
posted @ 2018-12-30 16:54 阿宇的编程之旅 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 搭建脚手架 create-react-app:(类似Vue): 步骤: 全局安装 npm install create-react-app -g 在项目目录下安装 create-react-app myapp(项目名称) npm start 运行项目 npm run eject 将配置文件迁移到外部 阅读全文
posted @ 2018-12-30 15:18 阿宇的编程之旅 阅读(143) 评论(0) 推荐(0) 编辑