Commit before breaking stuff

This commit is contained in:
2022-02-09 21:27:26 +01:00
parent d441658180
commit eda068951f
17 changed files with 257 additions and 133 deletions
+4 -3
View File
@@ -1,4 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router'
import GameView from '../views/GameView.vue'
const router = createRouter({
@@ -7,9 +8,9 @@ const router = createRouter({
{
path: '/',
name: 'game',
component: GameView
}
]
component: GameView,
},
],
})
export default router