Skip to content

Commit 7354986

Browse files
authored
Add missing heading anchors (#1139)
1 parent 43053f2 commit 7354986

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/api/ssr.md

+1-1
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ data() {
247247

248248
## インラインスタイルのバインディング {#binding-inline-styles}
249249

250-
### オブジェクトへのバインディング
250+
### オブジェクトへのバインディング {#binding-to-objects-1}
251251

252252
`:style` では次のような JavaScript のオブジェクト値へのバインディングがサポートされ、[HTML 要素の `style` プロパティ](https://developer.mozilla.org/ja/docs/Web/API/HTMLElement/style) に対応します:
253253

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

318318
スタイルへのオブジェクトのバインディングも、オブジェクトを返す算出プロパティと組み合わせて使用することが多くあります。
319319

320-
### 配列へのバインディング
320+
### 配列へのバインディング {#binding-to-arrays-1}
321321

322322
`:style` は、複数のスタイルオブジェクトからなる配列にバインドすることができます。各オブジェクトはマージされ、同じ要素に適用されます:
323323

src/guide/essentials/forms.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ export default {
379379

380380
しかし時には現在アクティブなインスタンスの動的プロパティに値をバインドしたいことがあります。それには `v-bind` を使用することができます。さらに、 `v-bind` を使用することで文字列以外の値も入力値にバインドすることができます。
381381

382-
### チェックボックス
382+
### チェックボックス {#checkbox-1}
383383

384384
```vue-html
385385
<input
@@ -403,7 +403,7 @@ export default {
403403
ブラウザはチェックされていないボックスをフォームの送信には含めないため、 `true-value``false-value` 属性は入力の `value` 属性に影響を与えません。 2 つの値 (例、 "yes" もしくは "no" ) のうち 1 つが送信されることを保証するには、代わりにラジオを使用してください。
404404
:::
405405

406-
### ラジオ
406+
### ラジオ {#radio-1}
407407

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

0 commit comments

Comments
 (0)