欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue脚手架创建项目及常用配置

程序员文章站 2022-04-14 20:06:41
首先安装配置这两篇挺好的 https://www.cnblogs.com/lgx5/p/10732016.html https://blog.csdn.net/qiang510939237/article/details/103064857 然后使用过程遇到一些问题记录下来 1.解决启动编译是esl ......

首先安装配置这两篇挺好的

https://www.cnblogs.com/lgx5/p/10732016.html

https://blog.csdn.net/qiang510939237/article/details/103064857

 

然后使用过程遇到一些问题记录下来

1.解决启动编译是eslint报错

关闭检查 https://blog.csdn.net/sinat_39323128/article/details/90898408

使用eslint格式化代码 https://blog.csdn.net/hdchangchang/article/details/82233740

2.npm i出现python错误 error: can't find python executable "python", you can set the python env variable

npm install --python=python2.7

3.debug调试配置 https://www.cnblogs.com/xifengxiaoma/p/9530737.html

4.路由嵌套 https://www.cnblogs.com/vickylinj/p/10900349.html