会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
风未起云先动
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
13
下一页
2020年12月7日
linux更新node版本
摘要: 一、安装包管理工具 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 智走
阅读(964)
评论(0)
推荐(0)
2020年11月8日
函数节流和防抖函数
摘要: 《节流函数》 一个函数执行一次后,只有大于设定的时间才会执行第二次 有个需要频繁触发的函数,出于性能角度,在规定时间内,只让函数触发的第一次生效,后面不生效 实现代码 function throttle(callback, wait) { wait = wait || 300;//默认节流300毫秒
阅读全文
posted @ 2020-11-08 17:28 智走
阅读(97)
评论(0)
推荐(0)
2020年11月7日
vue-cli 使用,更新
摘要: 升级vue2x版本
阅读全文
posted @ 2020-11-07 21:34 智走
阅读(99)
评论(0)
推荐(0)
2020年10月30日
webstorm自动编译scss
摘要: 资源来源: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 智走
阅读(427)
评论(0)
推荐(0)
2020年10月22日
git冲突的处理
摘要: 教程采用git的图形界面(TortoiseGit) 工具下载:https://download.tortoisegit.org/tgit/ 1、 选择冲突的文件点击右键 2、对比冲突解决问题
阅读全文
posted @ 2020-10-22 14:58 智走
阅读(286)
评论(0)
推荐(0)
2020年10月15日
linuix 安装 mysql8
摘要: 成功安装: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 智走
阅读(170)
评论(0)
推荐(0)
脚本安装mysql 8
摘要: https://renwole.com/archives/2215 脚本特性: 仅安装 MySQL8 及所需依赖,其他均不安装,以减少磁盘空间占用; 脚本支持 CentOS 7 ~ 8 ,Red Hat 7 ~ 8 的系统安装; 脚本支持高度自定义,可根据需要进行定制化; MySQL 8 安装方式为
阅读全文
posted @ 2020-10-15 10:08 智走
阅读(447)
评论(0)
推荐(0)
2020年9月28日
Object.defineProperty
摘要: 相关文档: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 智走
阅读(120)
评论(0)
推荐(0)
2020年9月10日
nuxt+ts+ant-design-vue
摘要: 使用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 智走
阅读(1094)
评论(1)
推荐(1)
2020年9月8日
js的Array
摘要: 1)fill() 方法用一个固定值填充一个数组中从起始索引到终止索引内的全部元素。不包括终止索引。 语法:fill(<value>,[start],[end]) 第一个参数必选,后面两个可选 注意:该方法会更改元素数组 1 const array1 = [1, 2, 3, 4]; 2 3 // fi
阅读全文
posted @ 2020-09-08 16:26 智走
阅读(105)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
13
下一页
公告