From d0d9a3459b6bf0de7222f8d806ab1a4654dd46e4 Mon Sep 17 00:00:00 2001 From: bcakmakoglu <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 19 Jun 2022 22:33:48 +0200 Subject: [PATCH] docs: add sidebar links for actions, getters and events --- docs/src/.vuepress/theme/index.ts | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/src/.vuepress/theme/index.ts b/docs/src/.vuepress/theme/index.ts index da0653d7..c24d95e0 100644 --- a/docs/src/.vuepress/theme/index.ts +++ b/docs/src/.vuepress/theme/index.ts @@ -58,7 +58,23 @@ export default { '/guide/theming', { text: 'Vue Flow', - children: ['/guide/vue-flow/config', '/guide/vue-flow/state', '/guide/vue-flow/slots'], + children: [ + '/guide/vue-flow/config', + '/guide/vue-flow/state', + { + text: 'Actions', + link: '/typedocs/interfaces/Actions', + }, + { + text: 'Getters', + link: '/typedocs/interfaces/Getters', + }, + { + text: 'Events', + link: '/typedocs/interfaces/FlowEvents' + }, + '/guide/vue-flow/slots' + ], }, '/guide/node', '/guide/edge',