First commit

This commit is contained in:
2022-02-07 22:14:31 +01:00
commit d441658180
43 changed files with 5234 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { createRouter, createWebHistory } from 'vue-router'
import GameView from '../views/GameView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'game',
component: GameView
}
]
})
export default router