feat: init client and desktop

This commit is contained in:
Arduinum
2025-12-28 19:25:23 +03:00
committed by Arduinum628
parent e757f03067
commit 541a44fa15
50 changed files with 15347 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import { createRouter, createWebHistory } from '@ionic/vue-router';
import { RouteRecordRaw } from 'vue-router';
import HomePage from '../views/HomePage.vue'
const routes: Array<RouteRecordRaw> = [
{
path: '/',
redirect: '/home'
},
{
path: '/home',
name: 'Home',
component: HomePage
}
]
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes
})
export default router