Build an App from Scratch
Please follow the below documentation to learn how you can build an app from the scratch.
Integrate New Widget
Integrate New Component/Page
For seed project:
// layout component import Full from '../container/Full' // dashboard components const DashboardOne = () => import('../views/dashboard/DashboardOne'); export default [ { path: '/', component: Full, redirect: '/default/dashboard/dashboard-v1', children: [ { path:'/default/dashboard/dashboard-v1', component: DashboardOne, meta: { title: 'message.dashboardv1', breadcrumb: 'Dashboard / DashboardV1' } } ] } ]
For complete template:
Integrating Menu
Last updated