FloatLabel page added

This commit is contained in:
tugcekucukoglu 2024-02-02 15:40:35 +03:00
parent 43cdab506d
commit 88a679feaf
8 changed files with 185 additions and 3 deletions

View file

@ -0,0 +1,18 @@
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import FloatLabel from 'primevue/floatlabel';
`
}
};
}
};
</script>