### 目录结构
```html
|-build(webpack构建过程的设置文件)
|-config(webpack-dev-server设定文件)
|-dist(生产目录)
|-src(开发目录)
| └─components(公共组件)
| |-
| └─config(配置文件)
| |-
| └─directives(指令)
| |-modules(各指令模块)
| |-index.js(指令入口)
| └─filters(过滤器)
| |-modules(各指令模块)
| |-index.js(过滤器入口)
| └─router(路由)
| |-map(各路由模块)
| |-index.js(路由入口)
| └─services(服务层)
| └─views(视图)
| └─vuex(状态管理)
| |-main.js(js入口文件)
|-static(公共静态资源)
| └─css(样式)
| └─fonts(字体)
| └─html(html)
| └─imgages(图片)
| └─js(脚本)
|-index.html(页面入口)
|-package.json
```