<template> <DocSectionText v-bind="$attrs"> <p>IftaLabel is used to create infield top aligned labels. Visit <PrimeVueNuxtLink to="/iftalabel">IftaLabel</PrimeVueNuxtLink> documentation for more information.</p> </DocSectionText> <div class="card flex justify-center"> <IftaLabel> <InputMask id="ssn" v-model="value" mask="999-99-9999" autocomplete="off" variant="filled" /> <label for="ssn">SSN</label> </IftaLabel> </div> <DocSectionCode :code="code" /> </template> <script> export default { data() { return { value: null, code: { basic: ` <IftaLabel> <InputMask id="ssn" v-model="value" mask="999-99-9999" variant="filled" /> <label for="ssn">SSN</label> </IftaLabel> `, options: ` <template> <div class="card flex justify-center"> <IftaLabel> <InputMask id="ssn" v-model="value" mask="999-99-9999" variant="filled" /> <label for="ssn">SSN</label> </IftaLabel> </div> </template> <script> export default { data() { return { value: null } } } <\/script> `, composition: ` <template> <div class="card flex justify-center"> <IftaLabel> <InputMask id="ssn" v-model="value" mask="999-99-9999" variant="filled" /> <label for="ssn">SSN</label> </IftaLabel> </div> </template> <script setup> import { ref } from 'vue'; const value = ref(null); <\/script> ` } }; } }; </script>