bug
都挺好,刚刚好
慢下来反而会更快,慢就是快,快就是慢。
展开
-
vue报错解决:Error in v-on handler (Promise/async): “[object object]“
vue报错解决:Error in v-on handler (Promise/async): “[object object]“转载 2023-07-19 18:01:52 · 2031 阅读 · 0 评论 -
requires a peer of webpack@^2.0.0 || ^3.0.0 || ^4.0.0 but none is installed.版本兼容问题
requires a peer of webpack@^2.0.0 || ^3.0.0 || ^4.0.0 but none is installed.版本兼容问题原创 2023-02-02 15:42:12 · 681 阅读 · 0 评论 -
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-templat
If you are using vue-loader@原创 2023-02-01 18:33:22 · 1547 阅读 · 0 评论 -
Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime
Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime原创 2023-02-01 18:25:57 · 831 阅读 · 0 评论 -
return false不起作用
return false不起作用原创 2023-02-01 09:29:22 · 589 阅读 · 0 评论 -
Uncaught (in promise) 的解决方法,可能原因
https://blog.csdn.net/qq_22701869/article/details/107816023转载 2022-11-09 11:37:47 · 11853 阅读 · 1 评论 -
overflow-y:hidden;overflow-x:auto;无效?
注意:子元素不能浮动;父元素不能使用display:flex;还有一种情况:就是自动换行了,,,试着加个white-space:nowrap;原创 2022-09-30 10:28:23 · 312 阅读 · 0 评论 -
Props with type Object/Array must...
Props with type Object/Array must..原创 2022-07-25 09:51:25 · 512 阅读 · 0 评论 -
There is no tracking information for the current branch. Please specify which branch you want to mer
git pull始终无法拉取最新代码解决办法git pull <remote> <branch>git pull 远程仓库地址 远程仓库名称原创 2022-03-14 09:25:56 · 970 阅读 · 0 评论 -
cannot be keyed. Place the key on real elements instead
<--! 以下代码编译的时候提示错误 --><template v-for="(item, index) in info" :key="key"></template>因为 上不能绑定属性,所以会有次错误尝试将template替换成其他标签原创 2022-03-13 19:12:30 · 2619 阅读 · 0 评论 -
VUE 注释快捷键不能用的问题
1.安装Vue 2 Snippets插件2.在settings.json中加入这个:{ "files.associations": { "*.vue": "html" }}原创 2022-02-13 17:59:18 · 1466 阅读 · 0 评论 -
npm安装依赖报错:npm ERR A complete log of this run can be found in: npm ERR C:\Users\misal\AppData\R
说明:全局脚手架和本地脚手架版本不一样。解决方法:执行 npm install npm@latest -g升级到最新版本(若升级到最新版本还是报错,则还需要再全局更新一下npm,更新后检查npm版本号不会变,内部应该有更新);.删除本地node_modules 依赖包;执行 npm cache clean --force 清理缓存;npm i 安装依赖;以上过程,尝试一次不行,可以多尝试几次就OK了...原创 2021-12-16 09:20:54 · 3089 阅读 · 0 评论 -
安装vue-element-admin出现E:\Git\bin\git.EXE ls-remote -h -t ssh://git@github.com/sohee-lee7/Squire.git错误
第一步git config --global http.sslverify "false"不行就试下面这个git config --global url."https://".insteadOf git://第二步 新报错npm ERR! code 128 npm ERR! Command failed: git clone --mirror -q git://github.com/adobe-webplatform/npm cache clean --force第三步npm i原创 2021-12-02 16:48:51 · 2375 阅读 · 0 评论 -
解决 Syntax Error: Error: PostCSS received undefined instead of CSS string
方法实际解决办法 npm install node-sass@4.14.1原创 2021-12-02 14:57:17 · 519 阅读 · 0 评论 -
Error while executing: npm ERR D:\软件\Git\cmd\git.EXE ls-remote -h -t http
解决办法原创 2021-11-29 10:25:41 · 1933 阅读 · 2 评论 -
JavaScript 中常见的错误类型
JavaScript 中常见的错误类型。ECMA-262 定义了 7 种错误类型:ErrorEvalErrorRangeErrorReferenceErrorSyntaxErrorTypeErrorURIError1、SyntaxError (语法错误)// 缺少符号console.log ('hello';// Uncaught SyntaxError: missing ) after argument list // 变量错误// Uncaught SyntaxError转载 2021-11-26 09:37:02 · 771 阅读 · 0 评论 -
解决Error: Cannot find module ‘node-sass‘问题
解决办法:1.在项目目录cmd下运行 npm install -g cnpm --registry=https://registry.npm.taobao.org2.下载成功后再运行 cnpm install node-sass两个都下载成功后就可以正常的运行项目了。原创 2021-11-18 14:17:42 · 1081 阅读 · 0 评论 -
Syntax Error: Error: Node Sass version 6.0.1 is incompatible with ^4.0.0.
node-sass和sass-loader的版本冲突问题更改sass-loader的版本:npm install sass-loader@10.1.1原创 2021-11-18 14:16:29 · 595 阅读 · 0 评论 -
完美解决 fatal: unable to access ‘https://github.com/.../.git‘: Could not resolve host: github.com
fatal: unable to access ‘https://github.com/723-byte/echarts_test.git/’: OpenSSL SSL_read: Connection was reset, errno 10054只需要在命令行中执行git config --global --unset http.proxy git config --global --unset https.proxy原创 2021-11-11 09:14:00 · 1031 阅读 · 0 评论 -
Module Error error The “YiliLine“ component has been registered but not used vue/no-unused-compo
包含没使用的组件原创 2021-11-10 14:42:42 · 277 阅读 · 0 评论 -
vue在css引入背景图片抱错:This relative module was not found:bg.png in ./node_modules/css-loader
引入报错改成~@的意思: @是webpack设置的路径名,代表的是src目录,可以在build / webpack.base.conf.js更改设置在vue css中采用别名引入 背景图片,可以在前面加一个波浪号 css 属性中: background: url("~@/assets/xxx.jpg") Webpack 会将以~符号作为前缀的路径视作依赖模块而去解析,这样 @的 alias 配置就能生效了。...原创 2021-11-09 16:39:09 · 2569 阅读 · 0 评论 -
node_modules/css-loader?报错问提解决方案
node_modules/css-loader?{“sourceMap”:true}!./node_modules/vue-loader/lib/style-compiler?报错问提解决方案less-loader 安装版本太高下载低版本试试原创 2021-11-09 16:06:12 · 3325 阅读 · 0 评论 -
SyntaxError (语法错误)
第一步 先找到出错位置第二步 再检查语法错误第三步 原因找到了 是因为引入的文件拼写错误原创 2021-11-09 15:50:48 · 5762 阅读 · 0 评论 -
TypeError: this.getOptions is not a function
今天用webpack打包项目,安装了less-loader模块之后报错,如下图:原因: less-loader安装的版本过高解决方案: 1.npm uninstall less-loader2.npm install less-loader@6.0.0转载 2021-11-09 14:30:11 · 84 阅读 · 0 评论 -
ERROR TypeError: Cannot read property ‘version‘ of undefined
第一步 卸载eslint npm uninstall eslint --save第二步 在package.json中去掉 "@vue/cli-plugin-eslint": "~4.5.0",转载 2021-11-05 12:56:54 · 533 阅读 · 0 评论 -
Duplicate object key
重复配置的意思原创 2021-11-04 16:46:57 · 3100 阅读 · 0 评论 -
Error: Rule can only have one resource source (provided resource and test + include + exclude)
原因分析:package.json中webpack版本冲突问题。解决方案:删除webpack,重新装以前的版本。npm uninstall webpacknpm install webpack@^4.0.0 --save-dev原创 2021-11-04 13:51:34 · 373 阅读 · 0 评论