Skip to content

Fix list in debugging-in-vscode.md #1662

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
Jun 16, 2018
Merged
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
10 changes: 5 additions & 5 deletions src/v2/cookbook/debugging-in-vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,19 @@ Click on the Debugging icon in the Activity Bar to bring up the Debug view, then

1. Set a breakpoint in **src/components/HelloWorld.vue** on `line 90` where the `data` function returns a string.

![Breakpoint Renderer](/images/breakpoint_set.png)
![Breakpoint Renderer](/images/breakpoint_set.png)

2. Open your favorite terminal at the root folder and serve the app using Vue CLI:

```
npm start
```
```
npm start
```

3. Go to the Debug view, select the **'vuejs: chrome'** configuration, then press F5 or click the green play button.

4. Your breakpoint should now be hit as the new instance of Chrome opens `http://localhost:8080`.

![Breakpoint Hit](/images/breakpoint_hit.png)
![Breakpoint Hit](/images/breakpoint_hit.png)

## Alternative Patterns

Expand Down