mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Refactor #5175 - FloatLabel
This commit is contained in:
parent
0dd5d5cea3
commit
355bbebe7e
10 changed files with 241 additions and 96 deletions
16
components/lib/floatlabel/BaseFloatlabel.vue
Normal file
16
components/lib/floatlabel/BaseFloatlabel.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue