docs: snappable connection line example

This commit is contained in:
braks
2022-11-14 20:10:19 +01:00
committed by Braks
parent b24b9efe11
commit bb18a68977
10 changed files with 375 additions and 4 deletions
+8 -4
View File
@@ -6,10 +6,6 @@ export const routes: RouterOptions['routes'] = [
path: '/',
redirect: '/overview',
},
{
path: '/rgb',
component: () => import('./src/RGBFlow/RGBFlow.vue'),
},
{
path: '/basic',
component: () => import('./src/Basic/Basic.vue'),
@@ -18,6 +14,10 @@ export const routes: RouterOptions['routes'] = [
path: '/basic-options-api',
component: () => import('./src/Basic/BasicOptionsAPI.vue'),
},
{
path: '/snap-handle',
component: () => import('./src/SnapHandle/SnapHandleExample.vue'),
},
{
path: '/custom-connectionline',
component: () => import('./src/CustomConnectionLine/CustomConnectionLine.vue'),
@@ -106,6 +106,10 @@ export const routes: RouterOptions['routes'] = [
path: '/nesting',
component: () => import('./src/Nesting/Nesting.vue'),
},
{
path: '/rgb',
component: () => import('./src/RGBFlow/RGBFlow.vue'),
},
]
export const router = createRouter({