随笔分类 -  Web开发

记录Vue React RN Flutter Node学习心得
摘要:小结:class 本质是构造函数,用于创建对象的。 ES6 之前的写法 // 构造函数用于创建对象实例 function Point1(x, y) { // 对象的属性 this.x = x; this.y = y; this.state = { msg: 111 }; } // 对象的方法 Poi 阅读全文
posted @ 2020-08-18 10:54 MarkLewis 阅读(133) 评论(0) 推荐(0)
摘要:# create-react-app 项目名称(不要使用中文) - create-react-app 创建项目 - npn start运行起来一个项目 - npx 是不是一定要写?不是,npx 是可选的。 阅读全文
posted @ 2020-08-17 17:20 MarkLewis 阅读(105) 评论(0) 推荐(0)