大飞_dafei

导航

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 49 下一页

2020年12月17日 #

Vue 数据冻结 Object.freeze

摘要: Vue 数据冻结 Object.freeze 情景: 页面上常量或者对象不想让修改,只是读取,这时候需要数据冻结 Object.freeze, demo如下 <script> import Vue from 'vue'; export default { data() { return { f33: 阅读全文

posted @ 2020-12-17 09:17 大飞_dafei 阅读(2293) 评论(0) 推荐(0) 编辑

2020年12月16日 #

Vue 启动项目内存溢出

摘要: Vue 启动项目内存溢出 FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory 具体信息如下: 95% emitting DONE Compil 阅读全文

posted @ 2020-12-16 11:41 大飞_dafei 阅读(4254) 评论(0) 推荐(0) 编辑

2020年12月13日 #

Typora[ markdown ] 使用3之----- 语法高亮显示

摘要: Typora[ markdown ] 使用3之 语法高亮显示 demo ```php echo "hello PHP" ``` ```javascript console.log("hello JavaScript") ``` 语法高亮 Here's a full list of supported 阅读全文

posted @ 2020-12-13 11:46 大飞_dafei 阅读(617) 评论(0) 推荐(1) 编辑

Typora[ markdown ] 使用2之-----空格显示

摘要: Typora[ markdown ] 使用2之 空格显示 使用 markdown 有时候需要显示空 或者 markdown 转为 pdf 的时候显示空格, 正常情况下 markdown 只会识别一个空格(半角状态下) 解决办法: 使用全角状态下使用空格键就可以了 阅读全文

posted @ 2020-12-13 11:37 大飞_dafei 阅读(1104) 评论(0) 推荐(0) 编辑

2020年12月4日 #

JetBrains 里不为人知的秘密(9)--购买篇(webstorm限时优惠购)

摘要: JetBrains 里不为人知的秘密(9)--购买篇(webstorm限时优惠购) webstorm 原价 $59.00 半价来了只需 $29.50 webstorm 官方Buy 阅读全文

posted @ 2020-12-04 12:40 大飞_dafei 阅读(1519) 评论(0) 推荐(0) 编辑

2020年12月2日 #

JavaScript_中的坑 sort

摘要: JavaScript_中的坑 sort 01) 排序 sort sort() 方法用原地算法对数组的元素进行排序,并返回数组。默认排序顺序是在将元素转换为字符串,然后比较它们的UTF-16代码单元值序列时构建的 [3,15,8,29,102,22].sort((a,b)=>{ return a-b} 阅读全文

posted @ 2020-12-02 10:13 大飞_dafei 阅读(117) 评论(0) 推荐(0) 编辑

2020年11月19日 #

JetBrains 里不为人知的秘密(8) --webstorm

摘要: JetBrains 里不为人知的秘密(8) --webstorm 01) 不知道 html Unknown html tag 阅读全文

posted @ 2020-11-19 18:55 大飞_dafei 阅读(182) 评论(0) 推荐(0) 编辑

2020年11月9日 #

react 和 webstorm(01) 之 基本入门

摘要: react 和 webstorm(01) 之 基本入门 01)快捷键 rcc 扩展 React Developer Tools 谷歌插件下载地址 (下载后的crx修改扩展名为rar即可使用) 阅读全文

posted @ 2020-11-09 08:41 大飞_dafei 阅读(171) 评论(0) 推荐(0) 编辑

chrome 插件包的位置

摘要: chrome 插件包的位置 C:\Users\Administrator\AppData\Local\Google\Chrome\User Data\Default\Extensions 阅读全文

posted @ 2020-11-09 08:32 大飞_dafei 阅读(319) 评论(0) 推荐(0) 编辑

2020年11月5日 #

vue 异步更新队列 this.$nextTick();

摘要: vue 异步更新队列 this.$nextTick(); 解决IE中回显 vue 项目在 IE 中经常遇到回显不出来, 比入有if 判断表单赋值, modal 弹窗赋值, 解决办法: this.isShow = !this.isShow; // 在这样的代码后面使用 this.$nextTick(( 阅读全文

posted @ 2020-11-05 16:39 大飞_dafei 阅读(272) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 49 下一页