Skip to content

Fix links #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 13, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/api/mount.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mount(component,{,options}])
# mount(component {, options}])

- **Arguments:**

Expand Down
8 changes: 4 additions & 4 deletions docs/en/api/shallow.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# shallow(component,{,options}])
# shallow(component {, options}])

- **Arguments:**

Expand All @@ -19,15 +19,15 @@

- **Options:**

See [options](/docs/en/api/options.md)
See [options](./options.md)

- **Usage:**

Returns [`Wrapper`](/docs/en/api/wrapper/README.md) of first DOM node or Vue component matching selector.
Returns [`Wrapper`](./wrapper/README.md) of first DOM node or Vue component matching selector.

Stubs all child components.

Use any valid [selector](/docs/en/api/selectors.md).
Use any valid [selector](./selectors.md).

**Without options:**

Expand Down
2 changes: 1 addition & 1 deletion docs/en/api/wrapper/find.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ const bar = wrapper.find(Bar)
expect(bar.is(Bar)).toBe(true)
```

- **See also:** [Wrapper](/docs/en/api/wrapper/README.md)
- **See also:** [Wrapper](README.md)
4 changes: 2 additions & 2 deletions docs/en/guides/common-tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ expect(wrapper.emitted().foo.length).toBe(2)
expect(wrapper.emitted().foo[1]).toEqual([123])
```

You can also get an Array of the events in their emit order by calling [wrapper.emittedByOrder()](../api/emittedByOrder.md).
You can also get an Array of the events in their emit order by calling [wrapper.emittedByOrder()](../api/wrapper/emittedByOrder.md).

## Manipulating Component State

Expand Down Expand Up @@ -86,7 +86,7 @@ mount(Component, {

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

*For a full list of options, please see the [mount options section](./api/options.md) of the docs.*
*For a full list of options, please see the [mount options section](../api/options.md) of the docs.*

## Applying Global Plugins and Mixins

Expand Down