摘要:
1.el-select抖动问题 <el-select placeholder="请选择" :popper-append-to-body="false"> 阅读全文
摘要:
1.sass css互转 sass to css:https://www.sassmeister.com/ css to sass:http://css2sass.herokuapp.com/ 2.vue3配置sass vue create <project> 选择: Manually select 阅读全文
摘要:
1.方法装饰器 (1)节流防抖 import { throttle, debounce } from 'lodash'// 节流 export const throttle = function(wait, options = {}) { return function(target, name, 阅读全文
摘要:
1.request.js /** * 自定义 request 网络请求工具,基于axios */ import axios, { AxiosPromise, AxiosRequestConfig, AxiosResponse } from 'axios'; import { ElNotificati 阅读全文
摘要:
1.iframe缓存 页面再嵌入iframe时,刷新当前页面缓存,无法清除iframe的缓存2.service woker主要用来做持久的离线缓存,配合cache storage一起用 阅读全文
摘要:
1.命令 npm ls jquery 查看本地jquery版本 npm show jquery version 查看jquery当前版本 2.问题 1.安装了nvm,不小心有单独安装了node,导致npm报错,删除单独安装的node目录即可,然后使用nvm安装 阅读全文
摘要:
1.nvm安装 (1)先卸载干净node,再安装nvm-Win 直接安装nvm-setup.exe (2)修改settings.txt 2.命令 nvm install <version> nvm list [available] nvm use <version> 3.碰见的坑 (1)nvm in 阅读全文
摘要:
1.eslint初始化项目 eslint --init 2.关掉eslint代码校验 .eslintrc.js 添加 "lintOnSave": false, // 关掉代码校验 阅读全文
摘要:
1.Excel在线编辑,导入导出功能 js库:Luckysheet 实例:https://github.com/oy-paddy/luckysheet-vue-importAndExport/tree/master 阅读全文
摘要:
1.错误类型 this.cliEngineCtor is not a constructor please specify path to 'eslint' package 2.解决方案 ESlint版本问题,重新安装 3. 不同项目(vue2和vue3 )导致Eslint不兼容,解决 # 移除以下 阅读全文