Skip to content

Commit c394ff1

Browse files
committed
fix: change value to :value
1 parent 2bff5fb commit c394ff1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/views/forms/Range.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</p>
4848
<DocsExample href="forms/range.html#min-and-max">
4949
<CFormLabel for="customRange2">Example range</CFormLabel>
50-
<CFormRange id="customRange2" :min="0" :max="5" value="3" />
50+
<CFormRange id="customRange2" :min="0" :max="5" :value="3" />
5151
</DocsExample>
5252
</CCardBody>
5353
</CCard>
@@ -71,7 +71,7 @@
7171
:min="0"
7272
:max="5"
7373
:step="0.5"
74-
value="3"
74+
:value="3"
7575
/>
7676
</DocsExample>
7777
</CCardBody>

0 commit comments

Comments
 (0)