90 lines
2.5 KiB
Vue
90 lines
2.5 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>The <i>variant</i> property defines the position of the label. Default value is <i>over</i>, whereas <i>in</i> and <i>on</i> are the alternatives.</p>
|
|
</DocSectionText>
|
|
<div class="card flex flex-wrap justify-center items-end gap-4">
|
|
<FloatLabel variant="in">
|
|
<InputText id="in_label" v-model="value1" autocomplete="off" />
|
|
<label for="in_label">In Label</label>
|
|
</FloatLabel>
|
|
|
|
<FloatLabel variant="on">
|
|
<InputText id="on_label" v-model="value2" autocomplete="off" />
|
|
<label for="on_label">On Label</label>
|
|
</FloatLabel>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value1: null,
|
|
value2: null,
|
|
code: {
|
|
basic: `
|
|
<FloatLabel variant="in">
|
|
<InputText id="in_label" v-model="value1" autocomplete="off" />
|
|
<label for="in_label">In Label</label>
|
|
</FloatLabel>
|
|
|
|
<FloatLabel variant="on">
|
|
<InputText id="on_label" v-model="value2" autocomplete="off" />
|
|
<label for="on_label">On Label</label>
|
|
</FloatLabel>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex flex-wrap justify-center items-end gap-4">
|
|
<FloatLabel variant="in">
|
|
<InputText id="in_label" v-model="value1" autocomplete="off" />
|
|
<label for="in_label">In Label</label>
|
|
</FloatLabel>
|
|
|
|
<FloatLabel variant="on">
|
|
<InputText id="on_label" v-model="value2" autocomplete="off" />
|
|
<label for="on_label">On Label</label>
|
|
</FloatLabel>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value1: null,
|
|
value2: null
|
|
}
|
|
}
|
|
}
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<div class="card flex flex-wrap justify-center items-end gap-4">
|
|
<div class="card flex flex-wrap justify-center gap-4">
|
|
<FloatLabel variant="in">
|
|
<InputText id="in_label" v-model="value1" autocomplete="off" />
|
|
<label for="in_label">In Label</label>
|
|
</FloatLabel>
|
|
|
|
<FloatLabel variant="on">
|
|
<InputText id="on_label" v-model="value2" autocomplete="off" />
|
|
<label for="on_label">On Label</label>
|
|
</FloatLabel>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
const value1 = ref(null);
|
|
const value2 = ref(null);
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|