Added Bootstrap and Vue I18N; added header and footer components; added language switcher

This commit is contained in:
2026-01-14 17:06:21 -05:00
parent 69912cce08
commit 099d48621b
17 changed files with 446 additions and 32 deletions

View File

@@ -1,8 +1,30 @@
import { createRouter, createWebHistory } from 'vue-router'
import Home from '@/views/Home.vue'
import List from '@/views/List.vue'
import DefaultLayout from '@/layout/DefaultLayout.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [],
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'Public',
component: DefaultLayout,
children: [
{
path: '/',
name: 'Home',
component: Home,
},
{
path: '/list',
name: 'List',
component: List,
},
],
},
],
})
export default router