Create BaseFloatLabel.vue

pull/4628/merge
tugcekucukoglu 2024-02-01 10:44:05 +03:00
parent e92e83382d
commit 9c162ae9e6
1 changed files with 16 additions and 0 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>