Vue报错汇总
Vue报错汇总
Target version not match, you can specify the target version in vueCompilerOptions.target in tsconfi
在jsconfig.json中加入
1 | "vueCompilerOptions": { |
整体如下:
1 | { |
eslint报错 error Component name “xxx” should always be multi-word vue/multi-word-component-names
原因是规定了驼峰命名法
- 如果项目根目录没有eslintrc.js,创一个,填入下面内容
1 | // .eslintrc.js |
在vue.config.js中加入
1
2
3module.exports = {
lintOnSave: false, // 当保存时不进行eslint的检查
};
Uncaught TypeError: VueRouter is not a constructor
这个报错就是版本问题了,你需要的就是下载一个低版本的vue-router
1 | npm i vue-router@3.5.2 -legacy-peer-deps |
Module build failed , vue-router.esm.js in Vue js
这个报错重新启动一下程序就可以了,npm run serve
请求成功,但axios写的还是localhost:8087/Login ,写api还是不行()
跨域问题还是没有解决
逆天啊,跨域问题居然是后面没有加/
[babel-plugin-component] If you are using bothon-demand and importing all, make sure to invoke the i
这个项目重启一下就好了,可能是一次引入Element-ui太大的原因
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 藏心阁!