primevue-mirror/doc/inputchips/FloatLabelDoc.vue

67 lines
1.4 KiB
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>A floating label appears on top of the input field when focused. Visit <PrimeVueNuxtLink to="/floatlabel">FloatLabel</PrimeVueNuxtLink> documentation for more information.</p>
</DocSectionText>
<div class="card p-fluid">
<FloatLabel>
<InputChips id="chips" v-model="value" />
<label for="chips">InputChips</label>
</FloatLabel>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: null,
code: {
basic: `
<FloatLabel>
<InputChips id="chips" v-model="value" />
<label for="chips">InputChips</label>
</FloatLabel>
`,
options: `
<template>
<div class="card p-fluid">
<FloatLabel>
<InputChips id="chips" v-model="value" />
<label for="chips">InputChips</label>
</FloatLabel>
</div>
</template>
<script>
export default {
data() {
return {
value: null
};
}
};
<\/script>
`,
composition: `
<template>
<div class="card p-fluid">
<FloatLabel>
<InputChips id="chips" v-model="value" />
<label for="chips">InputChips</label>
</FloatLabel>
</div>
</template>
<script setup>
import { ref } from "vue";
const value = ref();
<\/script>
`
}
};
}
};
</script>