Criei a pagina da home do vue

This commit is contained in:
Caio1w
2025-10-28 17:49:20 -03:00
parent d532c07790
commit a9db545049
10 changed files with 2872 additions and 11 deletions

View File

@@ -1,8 +1,12 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [],
routes: [{
path: '/',
name: 'home',
component: HomeView
}],
})
export default router