Files
vue-flow/examples/router.ts
T
Braks 0a45e09c32 feat: Add node/edge types id
* ID can be used to switch between different types of nodes/edges
* Add example
2021-10-22 08:49:53 +02:00

74 lines
1.7 KiB
TypeScript

import { createRouter, createWebHashHistory, RouterOptions } from 'vue-router'
export const routes: RouterOptions['routes'] = [
{
path: '/',
redirect: '/overview',
},
{
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'),
},
]
export const router = createRouter({
history: createWebHashHistory(),
routes,
})