Skip to content

Commit ebfe453

Browse files
authored
Update README.md
1 parent 0a3774e commit ebfe453

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/components/form-spinbutton/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ spinbutton does not have a value, the hidden input's value will be an empty stri
4545
The `v-model` always returns the value as a number. The `v-model` can be `null` if no initial value
4646
is set.
4747

48+
If the initial value is `null` no value will be displayed in the spinbutton. Use the `placeholder`
49+
prop to show a string when the spinbutton has no value (i.e. `placeholder="--"`).
50+
4851
## Min, max, and step
4952

5053
Spinbuttons have a default range from `1` to `100`, which can be changed by setting the `min` and
@@ -66,7 +69,7 @@ set the `wrap` prop to `true`.
6669
<template>
6770
<div>
6871
<label for="sb-wrap">Wrapping value spin button</label>
69-
<b-form-spinbutton id="sb-wrap" wrap min="1" max="25"></b-form-spinbutton>
72+
<b-form-spinbutton id="sb-wrap" wrap min="1" max="25" placeholder="--"></b-form-spinbutton>
7073
</div>
7174
</template>
7275

@@ -84,13 +87,13 @@ As with other form controls, `<b-form-spinbutton>` supports small and large sizi
8487
<template>
8588
<div>
8689
<label for="sb-small">Spin button - Small size</label>
87-
<b-form-spinbutton id="sb-small" size="sm" class="mb-2"></b-form-spinbutton>
90+
<b-form-spinbutton id="sb-small" size="sm" placeholder="--" class="mb-2"></b-form-spinbutton>
8891

8992
<label for="sb-default">Spin button - Default size</label>
90-
<b-form-spinbutton id="sb-default" class="mb-2"></b-form-spinbutton>
93+
<b-form-spinbutton id="sb-default" placeholder="--" class="mb-2"></b-form-spinbutton>
9194

9295
<label for="sb-large">Spin button - Large size</label>
93-
<b-form-spinbutton id="sb-large" size="lg" class="mb-2"></b-form-spinbutton>
96+
<b-form-spinbutton id="sb-large" size="lg" placeholder="--" class="mb-2"></b-form-spinbutton>
9497
</div>
9598
</template>
9699

0 commit comments

Comments
 (0)