You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,41 @@ A Vue3 starter project setup with
12
12
- Prettier
13
13
- and some custom preferences.
14
14
15
+
### Run this project:
16
+
15
17
```
16
18
yarn
17
19
yarn dev
18
20
```
21
+
22
+
### Change site name
23
+
24
+
In `App.vue` change the following,
25
+
26
+
```Javascript
27
+
constsiteName='Vite App'// add your site name here
28
+
```
29
+
30
+
### Layouts
31
+
32
+
You can add layouts in your project if you want. You will find a `default.vue` layout example in this project.
33
+
34
+
### Pages
35
+
36
+
You can add pages to your project. You will find two example pages in the `pages` directory (`Home.vue` and `About.vue`). **Do not forget to register the pages in the `router`**. You will also find a `router/index.js` file to register your pages.
37
+
38
+
### Meta info
39
+
40
+
You can add meta information in your pages. Here is an example,
0 commit comments