Skip to content

Commit 918488a

Browse files
committed
Link related issues
1 parent 64e5eac commit 918488a

File tree

6 files changed

+18
-7
lines changed

6 files changed

+18
-7
lines changed

src/.vuepress/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const sidebar = {
99
'/guide/a-crash-course',
1010
'/guide/conditional-rendering',
1111
'/guide/event-handling',
12+
'/guide/passing-data',
1213
'/guide/forms'
1314
]
1415
},
@@ -17,9 +18,9 @@ const sidebar = {
1718
collapsable: false,
1819
children: [
1920
'/guide/slots',
20-
'/guide/passing-data',
2121
'/guide/async-suspense',
2222
'/guide/http-requests',
23+
'/guide/transitions',
2324
'/guide/component-instance',
2425
'/guide/reusability-composition',
2526
'/guide/vuex',

src/guide/forms.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
Mostly `setValue()` and `trigger()`.
44

5-
Also we should tackle `v-model` here once
5+
Also we might want to tackle `v-model`.
6+
7+
https://github.com/vuejs/vue-test-utils-next-docs/issues/4

src/guide/passing-data.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Passing Data
1+
# Passing Data to Components
22

3-
Mostly `mount(Comp, { data() {...} })`, `setProps()`.
3+
Mostly mounting with `data()` and `props`.
44

5-
Important note to mention: `setProps()` only works for the mounted component.
5+
https://github.com/vuejs/vue-test-utils-next-docs/issues/9
6+
7+
We could also fit a complex use case with `setProps()` (as outlined in the linked issue).

src/guide/transitions.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Transitions
2+

src/guide/vue-router.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Vue Router
22

3-
:)
3+
:)
4+
5+
https://github.com/vuejs/vue-test-utils-next-docs/issues/7

src/guide/vuex.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Vuex
22

3-
:)
3+
:)
4+
5+
https://github.com/vuejs/vue-test-utils-next-docs/issues/8

0 commit comments

Comments
 (0)