This commit is contained in:
Kiran Surendran Pankan
2025-04-02 15:43:11 +05:30
parent 35f02e6e35
commit e4235df3dd
3 changed files with 26 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import { createRouter, createWebHistory } from 'vue-router';
const routes = [
// Add your routes here
];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;