changed naming to PascalCase

This commit is contained in:
Kostya
2023-11-18 18:32:20 +03:00
parent 38facaae89
commit f759c8c899
2 changed files with 7 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
import { createRouter, createWebHistory } from "vue-router";
import homePage from "../pages/HomePage.vue";
import HomePage from "../pages/HomePage.vue";
export default createRouter({
history: createWebHistory(),
routes: [
{ path: '/', component: homePage, name: 'home' }
{ path: '/', component: HomePage, name: 'home' }
]
})