Skip to content

Commit e2f92e0

Browse files
authored
chore: fix links in glossary (#2410)
* chore: fix links in glossary * remove domain
1 parent 0f29a14 commit e2f92e0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/glossary/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ See the [Composition API FAQ](/guide/extras/composition-api-faq) for more detail
8282

8383
## custom element {#custom-element}
8484

85-
A *custom element* is a feature of the [Web Components](#web-components) standard, which is implemented in modern web browsers. It refers to the ability to use a custom HTML element in your HTML markup to include a Web Component at that point in the page.
85+
A *custom element* is a feature of the [Web Components](#web-component) standard, which is implemented in modern web browsers. It refers to the ability to use a custom HTML element in your HTML markup to include a Web Component at that point in the page.
8686

8787
Vue has built-in support for rendering custom elements and allows them to be used directly in Vue component templates.
8888

@@ -118,7 +118,7 @@ See [reactive effect](#reactive-effect) and [side effect](#side-effect).
118118

119119
## event {#event}
120120

121-
The use of events for communicating between different parts of a program is common to many different areas of programming. Within Vue, the term is commonly applied to both native HTML element events and Vue component events. The `v-on` directive is used in templates to listen for both types of event.
121+
The use of events for communicating between different parts of a program is common to many different areas of programming. Within Vue, the term is commonly applied to both native HTML element events and Vue component events. The `v-on` directive is used in templates to listen for both types of event.
122122

123123
For more details see:
124124
- [Guide - Event Handling](/guide/essentials/event-handling.html)
@@ -213,7 +213,7 @@ The `setup()` function itself is a component option, so it *could* be described
213213

214214
While the term *plugin* can be used in a wide variety of contexts, Vue has a specific concept of a plugin as a way to add functionality to an application.
215215

216-
Plugins are added to an application by calling `app.use(plugin)`. The plugin itself is either a function or an object with an `install` function. That function will be passed the application instance and can then do whatever it needs to do.
216+
Plugins are added to an application by calling `app.use(plugin)`. The plugin itself is either a function or an object with an `install` function. That function will be passed the application instance and can then do whatever it needs to do.
217217

218218
For more details see:
219219
- [Guide - Plugins](/guide/reusability/plugins.html)
@@ -265,7 +265,7 @@ Vue can only track reactive dependencies within a reactive effect. If a property
265265
The term is derived from 'side effect'. Calling the effect function is a side effect of the property value being changed.
266266

267267
For more details see:
268-
- [Guide - Reactivity in Depth](https://vuejs.org/guide/extras/reactivity-in-depth.html)
268+
- [Guide - Reactivity in Depth](/guide/extras/reactivity-in-depth.html)
269269

270270
## reactivity {#reactivity}
271271

@@ -315,17 +315,17 @@ For more details see:
315315

316316
## scheduler {#scheduler}
317317

318-
The *scheduler* is the part of Vue's internals that controls the timing of when [reactive effects](#reactive-effect) are run.
318+
The *scheduler* is the part of Vue's internals that controls the timing of when [reactive effects](#reactive-effect) are run.
319319

320320
When reactive state changes, Vue doesn't immediately trigger rendering updates. Instead, it batches them together using a queue. This ensures that a component only re-renders once, even if multiple changes are made to the underlying data.
321321

322322
[Watchers](/guide/essentials/watchers.html) are also batched using the scheduler queue. Watchers with `flush: 'pre'` (the default) will run before component rendering, whereas those with `flush: 'post'` will run after component rendering.
323323

324-
Jobs in the scheduler are also used to perform various other internal tasks, such as triggering some [lifecycle hooks](#lifecycle-hooks) and updating [template refs](#template-refs).
324+
Jobs in the scheduler are also used to perform various other internal tasks, such as triggering some [lifecycle hooks](#lifecycle-hooks) and updating [template refs](#template-ref).
325325

326326
## scoped slot {#scoped-slot}
327327

328-
The term *scoped slot* is used to refer to a [slot](#slot) that receives [props](#props).
328+
The term *scoped slot* is used to refer to a [slot](#slot) that receives [props](#prop).
329329

330330
Historically, Vue made a much greater distinction between scoped and non-scoped slots. To some extent they could be regarded as two separate features, unified behind a common template syntax.
331331

0 commit comments

Comments
 (0)