add nested ul

This commit is contained in:
isUnknown 2024-07-11 14:32:32 +02:00
parent fd1ea11170
commit c9a2a971f1

View file

@ -29,16 +29,16 @@ VITE_PASSWORD=your-private-password
### Rules and conventions ### Rules and conventions
- All `.vue` files' names are written in PascalCase : - All `.vue` files' names are written in PascalCase :
`sidenav.vue` -`sidenav.vue`
`sideNav.vue` -`sideNav.vue`
`SideNav.vue` -`SideNav.vue`
`Home.vue` -`Home.vue`
- Stores files' names, located in `/src/stores/`, are written in camelCase and doesn't include the word "Store" : - Stores files' names, located in `/src/stores/`, are written in camelCase and doesn't include the word "Store" :
`Api.js` -`Api.js`
`ApiStore.js` -`ApiStore.js`
`apiStore.js` -`apiStore.js`
`api.js` -`api.js`
`pageData.js` -`pageData.js`
### Creating a page ### Creating a page