feat: add popop with awfuls colors and backend api call

This commit is contained in:
Pierre Tellier
2025-02-08 12:11:20 +01:00
parent dfaa97346f
commit b228b78e17
7 changed files with 34 additions and 26 deletions

View File

@ -3,21 +3,13 @@ import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue'),
},
{
path: '/test',
name: 'test',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/Home.vue'),
component: () => import('../views/test.vue'),
},
],
})