摘要:
继承:// 寄生式继承(圣杯) Father.prototype.name = 'Hello' //在Father类中添加一个name属性 function Father() {} //构造Father类 function Son() {} //构造Son... 阅读全文
摘要:
搭建脚手架 create-react-app:(类似Vue): 步骤: 全局安装 npm install create-react-app -g 在项目目录下安装 create-react-app myapp(项目名称) npm start 运行项目 npm run eject 将配置文件迁移到外部 阅读全文