diff --git a/examples/Unidirectional/CustomNode.vue b/examples/Unidirectional/CustomNode.vue
new file mode 100644
index 00000000..efec4813
--- /dev/null
+++ b/examples/Unidirectional/CustomNode.vue
@@ -0,0 +1,20 @@
+
+
+
+
node {{ props.id }}
+
+
+
+
+
+
diff --git a/examples/Unidirectional/UnidirectionalExample.vue b/examples/Unidirectional/UnidirectionalExample.vue
new file mode 100644
index 00000000..97416447
--- /dev/null
+++ b/examples/Unidirectional/UnidirectionalExample.vue
@@ -0,0 +1,204 @@
+
+
+
+
diff --git a/examples/UpdatableEdge/UpdatableEdgeExample.vue b/examples/UpdatableEdge/UpdatableEdgeExample.vue
new file mode 100644
index 00000000..8e3a8eef
--- /dev/null
+++ b/examples/UpdatableEdge/UpdatableEdgeExample.vue
@@ -0,0 +1,65 @@
+
+
+
+
+
+
diff --git a/examples/router.ts b/examples/router.ts
index c86d3bf7..0b4915d6 100644
--- a/examples/router.ts
+++ b/examples/router.ts
@@ -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({