摘要: 基础: 1、typescript是JavaScript的超集,支持js的所有语法 2、typescript不能运行在浏览器,需要使用编译器编译后使用 3、全局安装typescript编译器 npm install -g typescript 4、编译typescript文件(01ts.ts) tsc 阅读全文
posted @ 2021-10-11 21:33 吴小明- 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: 1、使用闭包实现累加函数 function addFn() { let num = 0 return function() { console.log(num++) } } const add = addFn() add() // 0 add() // 1 add() // 2 或 function 阅读全文
posted @ 2021-10-11 11:51 吴小明- 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 给App.vue中添加2个断点: vue.config.js中添加配置(cli3): vue官网(https://vuejs.org/v2/cookbook/debugging-in-vscode.html)中将这段代码粘贴到launch.json中,注意type为pwa-chrome 点击绿色按钮 阅读全文
posted @ 2021-10-11 11:14 吴小明- 阅读(323) 评论(0) 推荐(0) 编辑