上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 一、安装包管理工具 cnpm install n -g 二、安装包管理工具 n stable n stable 三、更改环境配置:/etc/profile export PATH=$PATH:/usr/local/n/versions/node/14.15.1/bin 四、 source /etc/ 阅读全文
posted @ 2020-12-07 12:12 智走 阅读(924) 评论(0) 推荐(0) 编辑
摘要: 《节流函数》 一个函数执行一次后,只有大于设定的时间才会执行第二次 有个需要频繁触发的函数,出于性能角度,在规定时间内,只让函数触发的第一次生效,后面不生效 实现代码 function throttle(callback, wait) { wait = wait || 300;//默认节流300毫秒 阅读全文
posted @ 2020-11-08 17:28 智走 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 升级vue2x版本 阅读全文
posted @ 2020-11-07 21:34 智走 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 资源来源:https://blog.csdn.net/wytbr666/article/details/77477182 官网安装Ruby很慢: https://rubyinstaller.org/downloads/ 我已在官方下载:http://zhizous.gitee.io/file/app 阅读全文
posted @ 2020-10-30 00:32 智走 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 教程采用git的图形界面(TortoiseGit) 工具下载:https://download.tortoisegit.org/tgit/ 1、 选择冲突的文件点击右键 2、对比冲突解决问题 阅读全文
posted @ 2020-10-22 14:58 智走 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 成功安装:https://www.cnblogs.com/insomina/p/13396712.html 掘金地址教程:https://juejin.im/post/6844903827376701448 mysql下载地址:https://dev.mysql.com/downloads/mysq 阅读全文
posted @ 2020-10-15 14:12 智走 阅读(161) 评论(0) 推荐(0) 编辑
摘要: https://renwole.com/archives/2215 脚本特性: 仅安装 MySQL8 及所需依赖,其他均不安装,以减少磁盘空间占用; 脚本支持 CentOS 7 ~ 8 ,Red Hat 7 ~ 8 的系统安装; 脚本支持高度自定义,可根据需要进行定制化; MySQL 8 安装方式为 阅读全文
posted @ 2020-10-15 10:08 智走 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 相关文档:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty 语法:Object.defineProperty(obj, prop, descri 阅读全文
posted @ 2020-09-28 21:55 智走 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 使用ant-design-vue // plugins/antd-ui.ts import Vue from 'vue' import * as Antd from 'ant-design-vue';//一定要这样做,方便类型检查 Vue.use(Antd) tsconfig.json文件 { "c 阅读全文
posted @ 2020-09-10 13:51 智走 阅读(1009) 评论(1) 推荐(1) 编辑
摘要: 1)fill() 方法用一个固定值填充一个数组中从起始索引到终止索引内的全部元素。不包括终止索引。 语法:fill(<value>,[start],[end]) 第一个参数必选,后面两个可选 注意:该方法会更改元素数组 1 const array1 = [1, 2, 3, 4]; 2 3 // fi 阅读全文
posted @ 2020-09-08 16:26 智走 阅读(101) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页