Skip to content

Commit 27fc472

Browse files
committed
update references
1 parent dcb2e62 commit 27fc472

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

src/api/index.md

+9-10
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ type: api
251251
var MyComponent = Vue.component('my-component')
252252
```
253253

254-
- **See also:** [Components](/guide/components.html).
254+
- **See also:** [Components](/guide/components.html)
255255

256256
<h3 id="Vue-use">Vue.use( plugin )</h3>
257257

@@ -262,7 +262,7 @@ type: api
262262

263263
Install a Vue.js plugin. If the plugin is an Object, it must expose an `install` method. If it is a function itself, it will be treated as the install method. The install method will be called with Vue as the argument.
264264

265-
- **See also:** [Plugins](/guide/plugins.html).
265+
- **See also:** [Plugins](/guide/plugins.html)
266266

267267
<h3 id="Vue-mixin">Vue.mixin( mixin )</h3>
268268

@@ -296,7 +296,7 @@ type: api
296296
})
297297
```
298298

299-
- **See also:** [Render Functions](/guide/render-function.html).
299+
- **See also:** [Render Functions](/guide/render-function.html)
300300

301301
## Options / Data
302302

@@ -338,7 +338,7 @@ type: api
338338
})
339339
```
340340

341-
- **See also:** [Reactivity in Depth](/guide/reactivity.html).
341+
- **See also:** [Reactivity in Depth](/guide/reactivity.html)
342342

343343
### props
344344

@@ -581,7 +581,7 @@ type: api
581581

582582
- **See also:**
583583
- [Child-Component-Reference](/guide/components.html#Child-Component-Reference)
584-
- !!TODO: [ref](#ref).
584+
- [ref](#ref)
585585

586586
### vm.$isServer
587587

@@ -593,8 +593,7 @@ type: api
593593

594594
Whether the current Vue instance is running on the server-side.
595595

596-
- **See also:**
597-
- !!TODO: [Server-Side Rendering](/guide/ssr.html).
596+
- **See also:** [Server-Side Rendering](/guide/ssr.html)
598597

599598
## Instance Methods / Data
600599

@@ -787,7 +786,7 @@ type: api
787786

788787
- **See also:**
789788
- [Vue.nextTick](#Vue-nextTick)
790-
-!!TODO: [Async Update Queue](/guide/reactivity.html#Async-Update-Queue)
789+
- [Async Update Queue](/guide/reactivity.html#Async-Update-Queue)
791790

792791
## Instance Methods / Lifecycle
793792

@@ -829,7 +828,7 @@ type: api
829828

830829
- **See also:**
831830
- [Lifecycle Diagram](/guide/instance.html#Lifecycle-Diagram)
832-
- !!TODO: [Server-Side Rendering](/guide/ssr.html)
831+
- [Server-Side Rendering](/guide/ssr.html)
833832

834833
<h3 id="vm-forceUpdate">vm.$forceUpdate( )</h3>
835834

@@ -875,7 +874,7 @@ type: api
875874

876875
- **Details:**
877876

878-
Updates the element's `innerHTML`. The contents are inserted as plain HTML - data bindings are ignored. If you need to reuse template pieces, you should use [functional components](!!TODO).
877+
Updates the element's `innerHTML`. The contents are inserted as plain HTML - data bindings are ignored. If you need to reuse template pieces, you should use [functional components](/guide/render-function.html#Functional-Components).
879878

880879
<p class="tip">Dynamically rendering arbitrary HTML on your website can be very dangerous because it can easily lead to [XSS attacks](https://en.wikipedia.org/wiki/Cross-site_scripting). Only use `v-html` on trusted content and **never** on user-provided content.</p>
881880

0 commit comments

Comments
 (0)