File tree Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Expand file tree Collapse file tree 1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -29,27 +29,39 @@ There are two different layouts (Default and Page) — first one for the home pa
2929## Directory structure
3030
3131```
32- ├───public
32+ PROJECT /* Entry point and configurations */
33+ │ .env.development
34+ │ .env.production
35+ │ env.d.ts
36+ │ index.html
37+ │ package-lock.json
38+ │ package.json
39+ │ README.md
40+ │ tsconfig.config.json
41+ │ tsconfig.json
42+ │ vite.config.ts
43+ │
44+ ├───public /* All static assets to the server, as robots.txt and more... */
3345│ favicon.ico
3446│
35- └───src
47+ └───src /* In The Begining */
3648 │ App.vue
3749 │ main.ts
3850 │
39- ├───components
51+ ├───components /* Components for Views and Layouts */
4052 │ Footer.vue
4153 │ Heads.vue
4254 │ Nav.vue
4355 │ Refs.vue
4456 │
45- ├───layouts
57+ ├───layouts /* You can add your own Layout files */
4658 │ Default.vue
4759 │ Page.vue
4860 │
49- ├───router
61+ ├───router /* Define the routes of your app */
5062 │ index.ts
5163 │
52- └───views
64+ └───views /* Change, Add, Remove the views be your needs */
5365 About.vue
5466 Contacts.vue
5567 Home.vue
You can’t perform that action at this time.
0 commit comments