Skip to content

Commit

Permalink
Create BaseFloatLabel.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Feb 1, 2024
1 parent e92e833 commit 9c162ae
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions components/lib/floatlabel/BaseFloatLabel.vue
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 9c162ae

Please sign in to comment.