feat: calendar & router configs

This commit is contained in:
opbnq-q
2025-03-11 04:52:09 -07:00
parent e16fce9221
commit a130fb9063
10 changed files with 231 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
import { createRouter, createWebHistory, type RouteRecordRaw } from "vue-router";
import Index from "../pages/Index.vue";
export const routes: RouteRecordRaw[] = [{
path: "/",
component: Index,
name: 'Главная',
}]
export const router = createRouter({
history: createWebHistory(),
routes,
});