diff --git a/docs/components/home/Banner.vue b/docs/components/home/Banner.vue index f17ce80b..83b0e0dd 100644 --- a/docs/components/home/Banner.vue +++ b/docs/components/home/Banner.vue @@ -22,7 +22,7 @@ const downloadCountTransitioned = useTransition(downloadCount, { }) starGazersCount.value = 3000 -downloadCount.value = 50000 +downloadCount.value = 150000 Promise.all([ $fetch('https://api.github.com/repos/bcakmakoglu/vue-flow?page=$i&per_page=100').then((data) => { diff --git a/docs/src/guide/edge.md b/docs/src/guide/edge.md index a7871a75..bc88359a 100644 --- a/docs/src/guide/edge.md +++ b/docs/src/guide/edge.md @@ -79,8 +79,6 @@ function logEvent(name, data) { } -# Introduction to Edges - Edges are the links connecting your nodes, forming a map. Each edge runs from one handle to another, and can be customized to your liking. diff --git a/docs/src/guide/node.md b/docs/src/guide/node.md index da11bfa9..a80cc8f4 100644 --- a/docs/src/guide/node.md +++ b/docs/src/guide/node.md @@ -50,8 +50,6 @@ function logEvent(name, data) { } -# Introduction to Nodes - Nodes are the underlying components of your graph. They can be any kind of data you want to visualize in your graph, existing independently and being interconnected through edges to create a data map. diff --git a/docs/src/guide/vue-flow/state.md b/docs/src/guide/vue-flow/state.md index 745cc167..5247b0bc 100644 --- a/docs/src/guide/vue-flow/state.md +++ b/docs/src/guide/vue-flow/state.md @@ -1,7 +1,5 @@ # State -## Introduction - Under the hood Vue Flow uses [Provide/Inject](https://v3.vuejs.org/guide/component-provide-inject) to pass around it's state between components. You can access the internal state through the [`useVueFlow`](/guide/composables#usevueflow/) composable. @@ -12,13 +10,11 @@ an already existing store from the current context. Internal state can be manipulated, for example by adding new elements to the state. The state is reactive and changes will be reflected on the graph. -```vue{4-6} +```vue