File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,33 @@ $ npm install
14
14
$ npm run dev
15
15
```
16
16
17
+ ### Folder Structure
18
+
19
+ ``` bash
20
+ .
21
+ ├── package.json # build scripts and dependencies
22
+ ├── .babelrc # babel configuration
23
+ ├── .eslintrc.js # eslint configuration
24
+ ├── build
25
+ │ ├── dev-server.js # development server script
26
+ │ ├── karma.conf.js # unit testing config
27
+ │ ├── webpack.base.conf.js # shared base webpack config
28
+ │ ├── webpack.dev.conf.js # development webpack config
29
+ │ └── webpack.prod.conf.js # production webpack config
30
+ ├── src
31
+ │ ├── index.html # main html file
32
+ │ ├── main.js # app entry file
33
+ │ ├── App.vue # main app component
34
+ │ ├── components # ui components
35
+ │ │ └── ...
36
+ │ └── assets # static assets
37
+ │ └── ...
38
+ └── test
39
+ └── unit # unit tests
40
+ ├── index.js # unit test entry file
41
+ └── ...
42
+ ```
43
+
17
44
### What's Included
18
45
19
46
- ` npm run dev ` : first-in-class development experience.
You can’t perform that action at this time.
0 commit comments