
VUE
天空源
源不断,水长流.. .
展开
-
Vue中Editor的scrollTo错误
Vue中使用Editor,报错 Cannot read property 'scrollTo' of undefined错误如下:ueditor.all.min.js:13 Uncaught TypeError: Cannot read property 'scrollTo' of undefined at window.onscroll (ueditor.all.min.js:13)打开ueditor下的ueditor.all.js文件中, 搜索lastScrollY174..原创 2020-06-08 17:55:41 · 1380 阅读 · 1 评论 -
npm node-sass 安装错误
控制台运行npm install时报错,报错信息如下:npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! node-sass@4.9.2 postinstall: `node scripts/build.js`npm ERR! Exit status 1npm ERR!npm ERR! Failed at the node-sass@4.9.2 postinstall script.npm ERR! This is probably not a原创 2020-06-08 17:47:50 · 3256 阅读 · 1 评论 -
nmp install命令环境问题
以管理员身份运行:Windows PowerShellnpm install --global --production windows-build-toolsnpm install -g node-gypwindows安装windows_build_tools失败 以管理员身份打开命令行,然后确认自己装的是不是visual studio版本如果是2017,则执行 npm ...转载 2018-10-25 04:05:09 · 1385 阅读 · 0 评论 -
npm error Unexpected end of JSON input while parsing near '...},"2.2.1":{"name":"vu'
在npm install时报错,错误是:error Unexpected end of JSON input while parsing near '...},"2.2.1":{"name":"vu'解决方法:先清除缓存,再重新安装清除缓存npm cache clean --force重新安装npm install,或安装制定插件npm install -g @angular/cli...原创 2018-11-29 23:08:24 · 444 阅读 · 0 评论 -
Npm离线安装
获取NPM缓存路径npm config get cache离线安装npm install --cache ./npm-cache --optional --cache-min 99999999999 --shrinkwrap false./npm-cache 表示当前目录的npm-cache目录,里面存放已经缓存好的插件离线安装指定模块npm install --save-...转载 2019-03-05 10:46:45 · 6262 阅读 · 0 评论