18 lines
365 B
Vue
18 lines
365 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import FloatLabelStyle from 'primevue/floatlabel/style';
|
|
|
|
export default {
|
|
name: 'BaseFloatLabel',
|
|
extends: BaseComponent,
|
|
props: {},
|
|
style: FloatLabelStyle,
|
|
provide() {
|
|
return {
|
|
$pcFloatLabel: this,
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|