上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 安装 进入 cd ~ 克隆 git clone https://github.com/nvm-sh/nvm.git 进入 cd nvm 执行 ./install.sh 新增 vim ~/.bash_profile 写入 export NVM_DIR="$HOME/.nvm" [ -s "$NVM_D 阅读全文
posted @ 2022-11-28 14:13 KevinTseng 阅读(606) 评论(0) 推荐(0)
摘要: 问题描述 执行打包 vsce package 提示错误 原因分析 未知 解决方法 打开错误源,将Blob改成any 实现效果 阅读全文
posted @ 2022-10-17 16:58 KevinTseng 阅读(85) 评论(0) 推荐(0)
摘要: 环境 环境 win10 64bit + macOS Big Sur 安装 下载安装包 https://github.com/debauchee/barrier/releases Windows设置(server端) 同意自动安装 bonjour 关闭ssl 设置应用端别名,然后重启Barrier M 阅读全文
posted @ 2022-07-05 14:39 KevinTseng 阅读(1628) 评论(0) 推荐(0)
摘要: 环境 win10 64bit + macOS Big Sur 安装 下载ShareMouse.dmg,双击打开 拖进资源管理器进行安装 安装后打开安全性与隐私设置,点击这里输入密码开锁 添加"完全访问磁盘访问权限" 添加"辅助功能"权限 MAC设置 打开sharemouse设置,在clients 将 阅读全文
posted @ 2022-06-25 14:39 KevinTseng 阅读(4435) 评论(0) 推荐(0)
摘要: 环境:macos 11.0.1 官方教程 https://reactnative.cn/docs/environment-setup 1. nrm use taobao 2. 安装Homebrew、XCode(Command Line Tools) 3. brew install watchman 阅读全文
posted @ 2022-02-20 13:26 KevinTseng 阅读(240) 评论(0) 推荐(0)
摘要: 打开VSCode设置 { "editor.fontLigatures": true, "editor.fontFamily": "Fira Code Light , Consolas, 'Courier New', monospace", "editor.maxTokenizationLineLen 阅读全文
posted @ 2022-01-05 09:33 KevinTseng 阅读(262) 评论(0) 推荐(0)
摘要: 功能 将日期时间转换为指定格式,如:YYYY-mm-dd HH:MM 表示 2021-11-02 15:00 方法 /** * 日期格式转换 * @param millisecond 毫秒 * @param template 模板(可选) * @example formatDate(new Date 阅读全文
posted @ 2021-11-02 14:45 KevinTseng 阅读(2596) 评论(0) 推荐(0)
摘要: // 联合类型 let connect: string | number; connect = "Tom"; connect = "13500000000"; // keyof 提取一个类型的属性名 作为联合类型 interface PersonModal { name: string; age: 阅读全文
posted @ 2021-10-26 11:06 KevinTseng 阅读(84) 评论(0) 推荐(0)
摘要: 效果预览 实现方法 (less) .layer-item-tip { position: absolute; left: 22px; top: 89px; padding: 6px; width: 232px; color: #F28645; text-align: left; line-heigh 阅读全文
posted @ 2021-09-02 15:51 KevinTseng 阅读(79) 评论(0) 推荐(0)
摘要: 目录 React Swiper轮播图(一) React Swiper轮播图(二) 需求 实现React可切换轮播图 效果预览 使用库 swiper官网 https://swiperjs.com/react npm i swiper@6.5.0 --save 实现方法 /** 导航 */ import 阅读全文
posted @ 2021-08-27 14:45 KevinTseng 阅读(731) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 ··· 9 下一页