Initial commit

This commit is contained in:
Lizandro Guarnizo
2025-02-06 14:22:29 -05:00
commit 6d8f1bcd6f
452 changed files with 250835 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import Dashboard from './components/Dashboard'
import DashboardHome from './pages/Home'
import UserPage from './pages/User'
const routes = [
{path: '/', redirect: {name: 'DashboardHome'}},
{
path: '/dashboard', component: Dashboard, children: [
{path: '/', redirect: {name: 'DashboardHome'}},
{path: 'home', name: 'DashboardHome', component: DashboardHome},
{path: 'user', name: 'UserPage', component: UserPage}
]
}
]
export default routes