Skip to content

Commit c36e251

Browse files
Add missing heading anchors (#2178)
1 parent 198a796 commit c36e251

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/api/ssr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
})()
3131
```
3232

33-
### SSR Context
33+
### SSR Context {#ssr-context}
3434

3535
You can pass an optional context object, which can be used to record additional data during the render, for example [accessing content of Teleports](/guide/scaling-up/ssr.html#teleports):
3636

src/guide/essentials/class-and-style.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ You can learn more about component attribute inheritance in [Fallthrough Attribu
247247

248248
## Binding Inline Styles {#binding-inline-styles}
249249

250-
### Binding to Objects
250+
### Binding to Objects {#binding-to-objects-1}
251251

252252
`:style` supports binding to JavaScript object values - it corresponds to an [HTML element's `style` property](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style):
253253

@@ -317,7 +317,7 @@ data() {
317317

318318
Again, object style binding is often used in conjunction with computed properties that return objects.
319319

320-
### Binding to Arrays
320+
### Binding to Arrays {#binding-to-arrays-1}
321321

322322
We can bind `:style` to an array of multiple style objects. These objects will be merged and applied to the same element:
323323

src/guide/essentials/forms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ For radio, checkbox and select options, the `v-model` binding values are usually
379379

380380
But sometimes we may want to bind the value to a dynamic property on the current active instance. We can use `v-bind` to achieve that. In addition, using `v-bind` allows us to bind the input value to non-string values.
381381

382-
### Checkbox
382+
### Checkbox {#checkbox-1}
383383

384384
```vue-html
385385
<input
@@ -403,7 +403,7 @@ But sometimes we may want to bind the value to a dynamic property on the current
403403
The `true-value` and `false-value` attributes don't affect the input's `value` attribute, because browsers don't include unchecked boxes in form submissions. To guarantee that one of two values is submitted in a form (e.g. "yes" or "no"), use radio inputs instead.
404404
:::
405405

406-
### Radio
406+
### Radio {#radio-1}
407407

408408
```vue-html
409409
<input type="radio" v-model="pick" :value="first" />

0 commit comments

Comments
 (0)