update(examples): Add Unidirectional and updatable edge example

This commit is contained in:
Braks
2021-10-22 10:46:54 +02:00
parent 3ee3843af6
commit 0cc7ef4805
4 changed files with 297 additions and 0 deletions
+8
View File
@@ -81,6 +81,14 @@ export const routes: RouterOptions['routes'] = [
path: '/switch',
component: () => import('./Switch/SwitchExample.vue'),
},
{
path: '/unidirectional',
component: () => import('./Unidirectional/UnidirectionalExample.vue'),
},
{
path: '/updateable-edge',
component: () => import('./UpdatableEdge/UpdatableEdgeExample.vue'),
},
]
export const router = createRouter({