赞
踩
1. electron项目优化:参考https://juejin.im/post/6844904029231775758。
2. electron-vue项目搭建:参考https://blog.csdn.net/qq_42231156/article/details/109209812。
3. process is not defined报错提示:参考https://blog.csdn.net/qq_42231156/article/details/109208053。
4. "$router/$store" does not exist on type报错:以下三种处理方案。
- 1. 声明:$router/$store any;
- 2. this['$router/$store'].push();
- 3. (this as any).$router.$store();
5. electron-vue忽略eslint校验 :
- 1. 忽视下一行校验: /*eslint-disable*/
- 2. 忽视所有校验:去掉webpack.web/render/main.config.js三个文件种的如下代码:
- use:{
- loader:"eslint-loader",
- options:{
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。