Demos added

This commit is contained in:
Bahadır Sofuoğlu
2022-11-03 16:52:39 +03:00
parent 94092fdb61
commit 1ee46af467
19 changed files with 3014 additions and 0 deletions

View File

@@ -12,7 +12,78 @@ const router = createRouter({
path: '',
name: 'dashboard',
component: () => import('@/views/Dashboard.vue')
},
{
path: '/formlayout',
name: 'formlayout',
component: () => import('@/views/demo/FormLayout.vue')
},
{
path: '/input',
name: 'input',
component: () => import('@/views/demo/Input.vue')
},
{
path: '/floatlabel',
name: 'floatlabel',
component: () => import('@/views/demo/FloatLabel.vue')
},
{
path: '/invalidstate',
name: 'invalidstate',
component: () => import('@/views/demo/InvalidState.vue')
},
{
path: '/button',
name: 'button',
component: () => import('@/views/demo/Button.vue')
},
{
path: '/table',
name: 'table',
component: () => import('@/views/demo/Table.vue')
},
{
path: '/list',
name: 'list',
component: () => import('@/views/demo/List.vue')
},
{
path: '/tree',
name: 'tree',
component: () => import('@/views/demo/Tree.vue')
},
{
path: '/panel',
name: 'panel',
component: () => import('@/views/demo/Panels.vue')
},
{
path: '/overlay',
name: 'overlay',
component: () => import('@/views/demo/Overlay.vue')
},
{
path: '/media',
name: 'media',
component: () => import('@/views/demo/Media.vue')
}
/*
{
path: '/overlay',
name: 'overlay',
component: () => import('./components/OverlayDemo.vue')
},
{
path: '/media',
name: 'media',
component: () => import('./components/MediaDemo.vue')
} */
]
}
]