Skip to content

Commit 2f28804

Browse files
kazuponeddyerburgh
authored andcommitted
docs: fix links (vuejs#96)
1 parent 02b13e8 commit 2f28804

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/en/api/mount.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# mount(component,{,options}])
1+
# mount(component {, options}])
22

33
- **Arguments:**
44

docs/en/api/shallow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# shallow(component,{,options}])
1+
# shallow(component {, options}])
22

33
- **Arguments:**
44

@@ -19,15 +19,15 @@
1919

2020
- **Options:**
2121

22-
See [options](/docs/en/api/options.md)
22+
See [options](./options.md)
2323

2424
- **Usage:**
2525

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.
2727

2828
Stubs all child components.
2929

30-
Use any valid [selector](/docs/en/api/selectors.md).
30+
Use any valid [selector](./selectors.md).
3131

3232
**Without options:**
3333

docs/en/api/wrapper/find.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ const bar = wrapper.find(Bar)
2424
expect(bar.is(Bar)).toBe(true)
2525
```
2626

27-
- **See also:** [Wrapper](/docs/en/api/wrapper/README.md)
27+
- **See also:** [Wrapper](README.md)

docs/en/guides/common-tips.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ expect(wrapper.emitted().foo.length).toBe(2)
5858
expect(wrapper.emitted().foo[1]).toEqual([123])
5959
```
6060

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).
6262

6363
## Manipulating Component State
6464

@@ -86,7 +86,7 @@ mount(Component, {
8686

8787
You can also update the props of an already-mounted component with the `wrapper.setProps({})` method.
8888

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.*
9090

9191
## Applying Global Plugins and Mixins
9292

0 commit comments

Comments
 (0)