Skip to content

Commit b43bf40

Browse files
committed
fix: duplicated id for some headings (#2049)
1 parent ee4f310 commit b43bf40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A common need for data binding is manipulating an element's class list and inlin
1212
<VueSchoolLink href="https://vueschool.io/lessons/vue-fundamentals-capi-dynamic-css-classes-with-vue" title="Free Vue.js Dynamic CSS Classes Lesson"/>
1313
</div>
1414

15-
### Binding to Objects {#binding-to-objects} {#binding-to-objects}
15+
### Binding to Objects {#binding-to-objects}
1616

1717
We can pass an object to `:class` (short for `v-bind:class`) to dynamically toggle classes:
1818

@@ -136,7 +136,7 @@ computed: {
136136
<div :class="classObject"></div>
137137
```
138138

139-
### Binding to Arrays {#binding-to-arrays} {#binding-to-arrays}
139+
### Binding to Arrays {#binding-to-arrays}
140140

141141
We can bind `:class` to an array to apply a list of classes:
142142

0 commit comments

Comments
 (0)