pull/411/head
cagataycivici 2020-07-16 16:37:26 +03:00
commit 92ed63028a
3 changed files with 11 additions and 12 deletions

View File

@ -2,17 +2,16 @@
<div class="app-inputstyleswitch">
<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" />
<label for="input_outlined">Outlined</label>
</div>
<div class="p-field-radiobutton">
<RadioButton id="input_filled" name="inputstyle" value="filled" :modelValue="value" @input="onChange" />
<label for="input_filled">Filled</label>
<div class="p-field-radiobutton">
<RadioButton id="input_outlined" name="inputstyle" value="outlined" :modelValue="value" @input="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" />
<label for="input_filled">Filled</label>
</div>
</div>
</div>
</div>
</template>
<script>

View File

@ -11,7 +11,7 @@
<div class="content-section implementation">
<div class="card">
<h5>Popup</h5>
<div class=" p-fluid p-grid p-formgrid">
<div class="p-fluid p-grid p-formgrid">
<div class="p-field p-col-12 p-md-4">
<label for="basic">Basic</label>
<Calendar id="basic" v-model="date1" />

View File

@ -551,7 +551,7 @@ export default {
</a>
<CodeHighlight>
<template v-pre>
&lt;h3&gt;Popup&lt;/h3&gt;
&lt;h5&gt;Popup&lt;/h5&gt;
&lt;div class=" p-fluid p-grid p-formgrid"&gt;
&lt;div class="p-field p-col-12 p-md-4"&gt;
&lt;label for="basic"&gt;Basic&lt;/label&gt;
@ -620,7 +620,7 @@ export default {
&lt;/div&gt;
&lt;/div&gt;
&lt;h3&gt;Inline&lt;/h3&gt;
&lt;h5&gt;Inline&lt;/h5&gt;
&lt;Calendar v-model="date14" :inline="true" :showWeek="true" /&gt;
</template>
</CodeHighlight>