Skip to content

Latest commit

 

History

History
39 lines (36 loc) · 1.55 KB

README.md

File metadata and controls

39 lines (36 loc) · 1.55 KB

donghu-rrs

Donghu subscription number project with vue.js. Documentation can be found at https://vuejs-templates.github.io/webpack/

Project Structure

.
├── build/                      # webpack config files
│   └── ...
├── config/
│   ├── index.js                # main project config
│   └── ...
├── src/
│   ├── main.js                 # app entry file
│   ├── App.vue                 # main app component
│   ├── components/             # ui components
│   │   └── ...
│   ├── assets/                 # module assets (processed by webpack)
│   │   └── ...
│   └── views                   # views
│       ├── login
│       │   └── login.vue
│       └── forget
│           └── login.vue
├── static/                     # pure static assets (directly copied)
├── .babelrc                    # babel config
├── .postcssrc.js               # postcss config
├── .eslintrc.js                # eslint config
├── .editorconfig               # editor config
├── index.html                  # index.html template
└── package.json                # build scripts and dependencies

相关重要文献