New components added to demos

This commit is contained in:
tugcekucukoglu 2024-01-30 11:04:48 +03:00
parent 8af1ec6eb7
commit 2032fd5216
28 changed files with 373 additions and 272 deletions

View file

@ -3,10 +3,10 @@
<p>A floating label appears on top of the input field when focused.</p>
</DocSectionText>
<div class="card p-fluid">
<span class="p-float-label">
<FloatLabel>
<Chips id="chips" v-model="value" />
<label for="chips">Chips</label>
</span>
</FloatLabel>
</div>
<DocSectionCode :code="code" />
</template>
@ -18,18 +18,18 @@ export default {
value: null,
code: {
basic: `
<span class="p-float-label">
<FloatLabel>
<Chips id="chips" v-model="value" />
<label for="chips">Chips</label>
</span>
</FloatLabel>
`,
options: `
<template>
<div class="card p-fluid">
<span class="p-float-label">
<FloatLabel>
<Chips id="chips" v-model="value" />
<label for="chips">Chips</label>
</span>
</FloatLabel>
</div>
</template>
@ -46,10 +46,10 @@ export default {
composition: `
<template>
<div class="card p-fluid">
<span class="p-float-label">
<FloatLabel>
<Chips id="chips" v-model="value" />
<label for="chips">Chips</label>
</span>
</FloatLabel>
</div>
</template>