• 工程目录结构


    ├── README.md                           <=  项目介绍
    ├── build                               <=  工程构建相关 <Vue-cli>
    │   ├── build.js                        <=  构建脚本
    │   ├── check-versions.js               <=  Node Npm版本检查
    │   ├── dev-client.js                   <=  开发客户端:浏览器刷新
    │   ├── dev-server.js                   <=  开发服务器:静态文件服务器、代理、热更新
    │   ├── utils.js                        <=  utils
    │   ├── webpack.base.conf.js            <=  webpack基础配置
    │   ├── webpack.dev.conf.js             <=  webpack开发配置
    │   └── webpack.prod.conf.js            <=  webpack生产配置
    ├── config                              <=  工程构建配置:开发服务器端口、代理,静态资源打包位置等
    │   ├── dev.env.js                      <=  开发环境配置
    │   ├── index.js                        <=  入口
    │   ├── prod.env.js                     <=  生产环境配置
    │   └── test.env.js                     <=  测试环境配置
    ├── index.html                          <=  单页应用入口
    ├── package-lock.json                   <=  Npm Package 版本锁
    ├── package.json                        <=  Npm Package 配置
    ├── src                                 <=  项目源代码
    │   ├── App.vue                         <=  Vue 根组件
    │   ├── api.js                          <=  api 配置
    │   ├── assets                          <=  静态资源
    │   │   ├── font
    │   │   │   ├── iconfont.eot
    │   │   │   ├── iconfont.svg
    │   │   │   ├── iconfont.ttf
    │   │   │   └── iconfont.woff
    │   │   ├── images
    │   │   │   └── logo.png
    │   │   ├── logo.png
    │   │   └── styles
    │   │       └── base.css
    │   ├── config.js                       <=  项目配置
    │   ├── extend                          <=  Vue 扩展相关
    │   │   ├── filters.js                  <=  全局过滤器
    │   │   ├── directive.js                <=  全局指令
    │   │   └── index.js                    <=  扩展入口
    │   ├── layout                          <=  布局组件
    │   │   ├── container.vue
    │   │   ├── header.vue
    │   │   ├── index.vue
    │   │   ├── levelbar.vue
    │   │   └── navbar.vue
    │   ├── main.js                         <=  Vue 入口
    │   ├── mock                            <=  Mock
    │   ├── router                          <=  路由配置
    │   │   ├── index.js
    │   │   └── routes.js
    │   ├── store                           <=  Vuex
    │   │   ├── actions
    │   │   │   └── user.js
    │   │   ├── index.js
    │   │   ├── modules
    │   │   │   ├── app.js
    │   │   │   └── user.js
    │   │   └── mutation-types.js
    │   ├── style                           <=  样式文件 
    │   │   └── define.less
    │   ├── utils                           <=  utils
    │   │   ├── axios.js                    <=  axios
    │   │   ├── const.js                    <=  常量
    │   │   ├── index.js
    │   │   └── storage.js                  <=  storage
    │   └── widgets                         <=  可复用组件
    │   └── views                           <=  路由级别的组件
    │       ├── Login.vue
    │       ├── form
    │       │   └── index.vue
    │       ├── table
    │       │   └── index.vue
    │       └── test
    │           └── query.vue
    ├── static                              <=  服务器静态资源
    │   └── favicon.ico
    └── test                                <=  测试文件夹  
        └── unit
            ├── index.js
            ├── karma.conf.js
            └── specs
                └── Hello.spec.js
    

      

  • 相关阅读:
    中国正在消失的老行当
    ie9 scrollbar中hover 高度增高的bug
    (替月光博客备份)百度百科:游荡在中国的窃贼
    严格模式下 W3C Strict 验证的几个注意事项
    [转]滤镜渐变使用 IE浏览器
    1.什么是串口?
    6.串口操作之API篇 GetCommTimeouts SetCommTimeouts
    5.串口操作之API篇 SetupComm GetCommState SetCommState
    TeeChart经验总结 13.Export之2.对象保存
    解决"手机存储暂不能使用""SIM卡存储暂不能使用"
  • 原文地址:https://www.cnblogs.com/Abner5/p/7371377.html
Copyright © 2020-2023  润新知