上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
  2022年2月24日
摘要: 方法一、 1、先在可以联网的电脑上下载好插件 2、找到已安装的插件列表文件:路径一般为 C:\用户\用户名\.vscode\extensions 3、将所需要的插件复制到U盘,再拷贝到离线安装的电脑上的 .vscode/extensions 文件夹下即可,重启vscode 即可安装成功。 方法二、 阅读全文
posted @ 2022-02-24 09:23 稳住别慌 阅读(25864) 评论(1) 推荐(3) 编辑
  2022年2月8日
摘要: "terminal.integrated.shell.windows": "D:\\Git\\bin\\bash.exe", 配置成bash.exe所在路径 vscode 升级到1.60.0版后 "terminal.integrated.profiles.windows":{ "PowerShell 阅读全文
posted @ 2022-02-08 16:46 稳住别慌 阅读(51) 评论(0) 推荐(0) 编辑
  2021年12月6日
摘要: 1. 在src路径下创建shims-vue.d.ts /* eslint-disable */ declare module '*.vue' { import type { DefineComponent } from 'vue' const component: DefineComponent<{ 阅读全文
posted @ 2021-12-06 11:27 稳住别慌 阅读(1086) 评论(0) 推荐(0) 编辑
  2021年11月3日
摘要: // 获取当前时间以及当前月的第一天 getCurrentDay(val) { var date = new Date() val ? date.setDate(1) : '' var year = date.getFullYear() var month = date.getMonth() + 1 阅读全文
posted @ 2021-11-03 15:35 稳住别慌 阅读(82) 评论(0) 推荐(0) 编辑
  2021年11月1日
摘要: import CryptoJS from 'crypto-js/crypto-js' // 默认的 KEY 与 iv 与后端保持一致 ,不采用后端传值密钥 const KEY = CryptoJS.enc.Utf8.parse('xxxxxxxxxxxxxxxx')// 密钥 (16位) const 阅读全文
posted @ 2021-11-01 11:58 稳住别慌 阅读(430) 评论(0) 推荐(0) 编辑
摘要: // JS获取两个日期之间相差的天数 function getDaysBetween(dateString1, dateString2) { var startDate = Date.parse(dateString1) var endDate = Date.parse(dateString2) v 阅读全文
posted @ 2021-11-01 11:39 稳住别慌 阅读(1943) 评论(0) 推荐(0) 编辑
摘要: <el-form-item label="开始时间" prop="ksrq" label-width="120px"> <el-date-picker v-model="form.ksrq" type="date" placeholder="选择日期" :picker-options="picker 阅读全文
posted @ 2021-11-01 11:05 稳住别慌 阅读(327) 评论(0) 推荐(0) 编辑
  2021年10月29日
摘要: // 此处样式 是解决table表格出现横向滚动条时, 合并栏在滚动条下方的问题 .el-table { overflow: auto; } .el-table__header-wrapper, .el-table__body-wrapper, .el-table__footer-wrapper { 阅读全文
posted @ 2021-10-29 16:05 稳住别慌 阅读(265) 评论(0) 推荐(0) 编辑
  2021年9月30日
摘要: 查看某一行代码是谁提交的 阅读全文
posted @ 2021-09-30 09:57 稳住别慌 阅读(22) 评论(0) 推荐(0) 编辑
摘要: git commit --amend git push origin master --force git基本操作 (1)克隆 git clone 仓库地址.git (2)修改用户名: git config --global user.name ‘你的git名称’ (3)修改邮箱: git conf 阅读全文
posted @ 2021-09-30 09:55 稳住别慌 阅读(62) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页