vue-music目录及样式初始化
目录初始化
常用目录
- api
- base
- common
- fonts
- image
- js
- stylus
- components
- router
- store
- actions
- getters
- index
- mutation-types
- mutations
- state
api
放置后端获取数据的js文件,常用方式有jsonp/axios。 * jsonp的github * axios的github ### base 存放常用的可复用的基础component ### common 存放网页所需字体,图片,复用的js文件,和css样式文件。
其中需要注意stylus文件引用顺序 1
2
3@import "./reset.styl"
@import "./base.styl"
@import "./icon.styl"
eslint常用配置
eslint规则
可以在官网查询配置相关规则 1
2
3
4
5
6
7
8
9
10'rules': {
// allow paren-less arrow functions
'arrow-parens': 0,
// allow async-await
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'eol-last': 0,
'space-before-function-paren': 0
}
我们所配置的rules: * arrow-parens: 要求箭头函数的参数使用圆括号 * generator-star-spacing: 强制 generator 函数中 * 号周围使用一致的空格 * no-debugger: 禁用debugger * eol-last: 要求或禁止文件末尾存在空行 * space-before-function-paren: 强制在 function的左括号之前使用一致的空格
webpack.base.conf 配置引用别名
配置别名,项目中引用不用添加src了。
1 | resolve: { |
- 本文标题:vue-music目录及样式初始化
- 本文作者:hddhyq
- 本文链接:https://hddhyq.github.io/2017/10/12/vue-music目录及样式初始化/
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!