* Add getter for node/edge types * change nodeTypes prop type to only Record<string, NodeType> - same for edges * Add rgb example * remove v-model for elements Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
118 lines
2.8 KiB
TypeScript
118 lines
2.8 KiB
TypeScript
import { createRouter, createWebHashHistory, RouterOptions } from 'vue-router'
|
|
|
|
export const routes: RouterOptions['routes'] = [
|
|
{
|
|
path: '/',
|
|
redirect: '/overview',
|
|
},
|
|
{
|
|
path: '/rgb',
|
|
component: () => import('./RGBFlow/RGBFlow.vue'),
|
|
},
|
|
{
|
|
path: '/basic',
|
|
component: () => import('./Basic/Basic.vue'),
|
|
},
|
|
{
|
|
path: '/custom-connectionline',
|
|
component: () => import('./CustomConnectionLine/CustomConnectionLine.vue'),
|
|
},
|
|
{
|
|
path: '/custom-node',
|
|
component: () => import('./CustomNode/CustomNode.vue'),
|
|
},
|
|
{
|
|
path: '/drag-n-drop',
|
|
component: () => import('./DragNDrop/DnD.vue'),
|
|
},
|
|
{
|
|
path: '/edges',
|
|
component: () => import('./Edges/EdgesExample.vue'),
|
|
},
|
|
{
|
|
path: '/button-edge',
|
|
component: () => import('./EdgeWithButton/EdgeWithButton.vue'),
|
|
},
|
|
{
|
|
path: '/edge-types',
|
|
component: () => import('./EdgeTypes/EdgeTypesExample.vue'),
|
|
},
|
|
{
|
|
path: '/empty',
|
|
component: () => import('./Empty/EmptyExample.vue'),
|
|
},
|
|
{
|
|
path: '/hidden',
|
|
component: () => import('./Hidden/HiddenExample.vue'),
|
|
},
|
|
{
|
|
path: '/interaction',
|
|
component: () => import('./Interaction/InteractionExample.vue'),
|
|
},
|
|
{
|
|
path: '/layouting',
|
|
component: () => import('./Layouting/LayoutingExample.vue'),
|
|
},
|
|
{
|
|
path: '/multi-flows',
|
|
component: () => import('./MultiFlows/MultiFlowsExample.vue'),
|
|
},
|
|
{
|
|
path: '/node-type-change',
|
|
component: () => import('./NodeTypeChange/NodeTypeChangeExample.vue'),
|
|
},
|
|
{
|
|
path: '/node-types-id-change',
|
|
component: () => import('./NodeTypesIdChange/NodeTypesIdChangeExample.vue'),
|
|
},
|
|
{
|
|
path: '/overview',
|
|
component: () => import('./Overview/Overview.vue'),
|
|
},
|
|
{
|
|
path: '/provider',
|
|
component: () => import('./Provider/ProviderExample.vue'),
|
|
},
|
|
{
|
|
path: '/save-restore',
|
|
component: () => import('./SaveRestore/SaveRestoreExample.vue'),
|
|
},
|
|
{
|
|
path: '/stress',
|
|
component: () => import('./Stress/StressExample.vue'),
|
|
},
|
|
{
|
|
path: '/switch',
|
|
component: () => import('./Switch/SwitchExample.vue'),
|
|
},
|
|
{
|
|
path: '/unidirectional',
|
|
component: () => import('./Unidirectional/UnidirectionalExample.vue'),
|
|
},
|
|
{
|
|
path: '/updateable-edge',
|
|
component: () => import('./UpdatableEdge/UpdatableEdgeExample.vue'),
|
|
},
|
|
{
|
|
path: '/update-node',
|
|
component: () => import('./UpdateNode/UpdateNodeExample.vue'),
|
|
},
|
|
{
|
|
path: '/update-node-internals',
|
|
component: () => import('./UpdateNodeInternals/UpdateNodeInternalsExample.vue'),
|
|
},
|
|
{
|
|
path: '/validation',
|
|
component: () => import('./Validation/ValidationExample.vue'),
|
|
},
|
|
{
|
|
path: '/zoom-pan-helper',
|
|
component: () => import('./ZoomPanHelper/ZoomPanHelperExample.vue'),
|
|
},
|
|
]
|
|
|
|
export const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes,
|
|
})
|