mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
16 lines
331 B
Vue
16 lines
331 B
Vue
<script>
|
|
import BaseComponent from '@primevue/core/basecomponent';
|
|
import FluidStyle from 'primevue/fluid/style';
|
|
|
|
export default {
|
|
name: 'BaseFluid',
|
|
extends: BaseComponent,
|
|
style: FluidStyle,
|
|
provide() {
|
|
return {
|
|
$pcFluid: this,
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|