Fixed showcase config for input style and ripple

pull/496/head
Cagatay Civici 2020-09-24 13:09:48 +03:00
parent 93a9865d92
commit d32c681ce1
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
<AppInputStyleSwitch />
<h4>Ripple Effect</h4>
<InputSwitch :value="rippleActive" @input="onRippleChange" />
<InputSwitch :modelValue="rippleActive" @update:modelValue="onRippleChange" />
<h4>Free Themes</h4>
<p>Built-in component themes created by the <a href="https://www.primefaces.org/designer/primevue">PrimeVue Theme Designer</a>.</p>

View File

@ -3,11 +3,11 @@
<h4>Input Style</h4>
<div class="p-formgroup-inline">
<div class="p-field-radiobutton">
<RadioButton id="input_outlined" name="inputstyle" value="outlined" :modelValue="value" @input="onChange" />
<RadioButton id="input_outlined" name="inputstyle" value="outlined" :modelValue="value" @update:modelValue="onChange" />
<label for="input_outlined">Outlined</label>
</div>
<div class="p-field-radiobutton">
<RadioButton id="input_filled" name="inputstyle" value="filled" :modelValue="value" @input="onChange" />
<RadioButton id="input_filled" name="inputstyle" value="filled" :modelValue="value" @update:modelValue="onChange" />
<label for="input_filled">Filled</label>
</div>
</div>