File tree 4 files changed +8
-8
lines changed 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- # mount(component,{, options}] )
1
+ # mount(component {, options}] )
2
2
3
3
- ** Arguments:**
4
4
Original file line number Diff line number Diff line change 1
- # shallow(component,{, options}] )
1
+ # shallow(component {, options}] )
2
2
3
3
- ** Arguments:**
4
4
19
19
20
20
- ** Options:**
21
21
22
- See [ options] ( /docs/en/api /options.md)
22
+ See [ options] ( . /options.md)
23
23
24
24
- ** Usage:**
25
25
26
- Returns [ ` Wrapper ` ] ( /docs/en/api /wrapper/README.md) of first DOM node or Vue component matching selector.
26
+ Returns [ ` Wrapper ` ] ( . /wrapper/README.md) of first DOM node or Vue component matching selector.
27
27
28
28
Stubs all child components.
29
29
30
- Use any valid [ selector] ( /docs/en/api /selectors.md) .
30
+ Use any valid [ selector] ( . /selectors.md) .
31
31
32
32
** Without options:**
33
33
Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ const bar = wrapper.find(Bar)
24
24
expect (bar .is (Bar)).toBe (true )
25
25
```
26
26
27
- - ** See also:** [ Wrapper] ( /docs/en/api/wrapper/ README.md)
27
+ - ** See also:** [ Wrapper] ( README.md )
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ expect(wrapper.emitted().foo.length).toBe(2)
58
58
expect (wrapper .emitted ().foo [1 ]).toEqual ([123 ])
59
59
```
60
60
61
- You can also get an Array of the events in their emit order by calling [ wrapper.emittedByOrder()] ( ../api/emittedByOrder.md ) .
61
+ You can also get an Array of the events in their emit order by calling [ wrapper.emittedByOrder()] ( ../api/wrapper/ emittedByOrder.md ) .
62
62
63
63
## Manipulating Component State
64
64
@@ -86,7 +86,7 @@ mount(Component, {
86
86
87
87
You can also update the props of an already-mounted component with the ` wrapper.setProps({}) ` method.
88
88
89
- * For a full list of options, please see the [ mount options section] ( ./api/options.md ) of the docs.*
89
+ * For a full list of options, please see the [ mount options section] ( .. /api/options.md ) of the docs.*
90
90
91
91
## Applying Global Plugins and Mixins
92
92
You can’t perform that action at this time.
0 commit comments