Refactor #5175 - FloatLabel

This commit is contained in:
tugcekucukoglu 2024-01-30 11:01:40 +03:00
parent 0dd5d5cea3
commit 355bbebe7e
10 changed files with 241 additions and 96 deletions

View file

@ -0,0 +1,16 @@
<script>
import BaseComponent from 'primevue/basecomponent';
import FloatLabelStyle from 'primevue/floatlabel/style';
export default {
name: 'BaseFloatLabel',
extends: BaseComponent,
props: {},
style: FloatLabelStyle,
provide() {
return {
$parentInstance: this
};
}
};
</script>