fix error with install vue router

This commit is contained in:
Kostya
2023-11-12 22:13:34 +03:00
parent 086515f3b8
commit b69c3b2b17
7 changed files with 26 additions and 279 deletions

View File

@@ -8,11 +8,9 @@
export default {
name: 'App',
components: {
}
components: {}
}
</script>
<style>
</style>

View File

@@ -6,7 +6,7 @@
<script>
export default {
name: 'HomePage'
}
</script>

View File

@@ -1,6 +1,6 @@
import { createRouter, createWebHistory } from "vue-router";
import homePage from "@/pages/HomePage.vue";
import homePage from "../pages/HomePage.vue";
export default createRouter({
history: createWebHistory(),
routes: [