其他分享
首页 > 其他分享> > vueCli 搭建环境

vueCli 搭建环境

作者:互联网

1. 安装(卸载) Vue/Cli       管理员  npm (un)install -g @vue/cli

2. 运行脚手架                                  vue ui  

3. 手动选择:  bebel/router/linter formatter / 使用配置文件

4. vue2.0 + Eslint + standard

5. 脚手架配置

     a) 安装插件 element-ui  按需

     b) 运行依赖  | axios 

6. 任务 =》 serve => 启动app 项目创建成功

 

相关配置:

1.  .prettierrc  

     {

  "trailingComma": "none",

  "semi": false,

  "singleQuote": true

         }

2. .eslintrc.js修改 在rules里增加:

  'eol-last': 'off',

  'space-before-function-paren': 0

  semi: 0

 

3. proxy设置

 

标签:vueCli,插件,vue,semi,环境,ui,脚手架,安装,搭建
来源: https://www.cnblogs.com/running-firebull/p/16363680.html