component name
Gitea Actions Requirements / Explore-Gitea-Actions (push) Waiting to run Details

This commit is contained in:
aarizona 2024-05-03 09:54:01 +03:00
parent 6c8f0a21a3
commit 55ac7732f5
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,3 @@
<template>
123
</template>

View File

@ -7,10 +7,12 @@ import './assets/main.scss'
import App from './App.vue' import App from './App.vue'
import Home from './components/Home.vue' import Home from './components/Home.vue'
import Projects from './components/Projects.vue' import Projects from './components/Projects.vue'
import Game from './components/Game.vue'
const routes = [ const routes = [
{ path: '/', component: Home }, { path: '/', component: Home },
{ path: '/projects', component: Projects }, { path: '/projects', component: Projects },
{ path: '/game', component: Game },
] ]
const router = createRouter({ const router = createRouter({