`
+## Copy other pages
+
+Copy the pages from `src/views/` (except `LoginView.vue` and `HomeView.vue`) to to `pages/` and remove the `View` from the file names
+
+Now for each page wrap the entire template with `` and replace `` with `` with a `name` prop just like you did for `dashboard.vue` before.
+
+Note: For the `Error.vue` and `Style.vue` pages, use the `` without the `name` prop.
+
+## Update `configs/menuAside.js`
+
+Update `Styles` and `Login` links:
+```js
+// ...
+ {
+ // to: "/",
+ to: "/style",
+ label: "Styles",
+ icon: mdiPalette,
+ },
+ // ...
+ {
+ to: "/login",
+ to: "/",
+ label: "Login",
+ icon: mdiLock,
+ },
+// ...
+```
+
+## Replace `RouterLink` with `NuxtLink`
+
+Search all files for `RouterLink` and replace import statements and references to `RouterLink` as per below example:
+
+```vue
+
+```
## Remove/update imports
-Nuxt automatically imports any components in your `components/` directory. So, you may safely remove that imports from `
+```
+
+## Remove href
+
+Remove `href` from props that already have a `to` prop from `components/AsideMenuItem.vue` and `components/NavBarItem.vue`
+
+Example from`components/AsideMenuItem.vue`:
+```vue
+
+
+
+
+```
-## Contributions open
+## Delete `assets/css/styles` Folder
-WIP - work in progress. Some things are missing. Contributions open.
+Delete `assets/css/styles` folder to avoid conflicts
\ No newline at end of file