Vue-cli是Vue的脚手架工具
帮助我们写好Vue.js基础代码的工具.
- 目录结构
- 本地调试
- 代码部署
- 热加载
- 单元测试
|
|
webpack 环境搭建
- vue init webpack sell
- cd sell
- npm install
- npm start
目录文件
- build
- config
- node_modules 依赖包
- src源码
- assets
- components
- static 静态文件
- .babelrc babel编译配置
- “preset” 预设插件
- “plugins” 插件
- “comments”:false false表示编译后代码不包含注释
- editorconfig
- charset 编码
- indent_style 缩进风格
- indent_size
- end_of_line 换行符
- inset_final_newline
- trim_trailing_whitespace true自动移除行尾多余空格
- .eslintignore
- .eslintrc.js eslint的配置文件
- .gitignore git忽略文件
- index.html 主html
- package.json 项目描述
- “script” 配置脚本命令
- README.md
Webpack 打包
|
|
- module
- preLoader
- loaders
- include 只针对指定目录编译
- exclude 编译时不包含目录
- url-loader query{limit 限制大小(超过后形成一个独立文件)}
- eslint formatter 查看eslink错误原因
- vue:{loader:}