Skip to content

Commit f96c90e

Browse files
authored
fix: broken links (#1406)
1 parent 9109fd5 commit f96c90e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/guide/essentials/component-basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Components allow us to split the UI into independent and reusable pieces, and th
66

77
<!-- https://www.figma.com/file/qa7WHDQRWuEZNRs7iZRZSI/components -->
88

9-
This is very similar to how we nest native HTML elements, but Vue implements its own component model that allow us to encapsulate custom content and logic in each component. Vue also plays nicely with native Web Components. If you are curious about the relationship between Vue Components and native Web Components, [read more here](http://localhost:3000/guide/extras/web-components.html).
9+
This is very similar to how we nest native HTML elements, but Vue implements its own component model that allow us to encapsulate custom content and logic in each component. Vue also plays nicely with native Web Components. If you are curious about the relationship between Vue Components and native Web Components, [read more here](/guide/extras/web-components.html).
1010

1111
## Defining a Component
1212

@@ -93,7 +93,7 @@ The example above defines a single component and exports it as the default expor
9393
## Using a Component
9494

9595
:::tip
96-
We will be using SFC syntax for the rest of this guide - the concepts around components are the same regardless of whether you are using a build step for not. The [Examples](http://localhost:3000/examples/) section shows component usage in both scenarios.
96+
We will be using SFC syntax for the rest of this guide - the concepts around components are the same regardless of whether you are using a build step for not. The [Examples](/examples/) section shows component usage in both scenarios.
9797
:::
9898

9999
To use a child component, we need to import it in the parent component. Assuming we placed our counter component inside a file called `ButtonCounter.vue`, the component will be exposed as the file's default export:

src/guide/essentials/watchers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ watchPostEffect(() => {
346346

347347
## `this.$watch()` \*
348348

349-
It's also possible to imperatively create watchers using the [`$watch()` instance method](http://localhost:3000/api/component-instance.html#watch):
349+
It's also possible to imperatively create watchers using the [`$watch()` instance method](/api/component-instance.html#watch):
350350

351351
```js
352352
export default {

0 commit comments

Comments
 (0)