mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
18 lines
408 B
Vue
18 lines
408 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import DataViewLayoutOptionsStyle from 'primevue/dataviewlayoutoptions/style';
|
|
|
|
export default {
|
|
name: 'BaseDataViewLayoutOptions',
|
|
extends: BaseComponent,
|
|
props: {
|
|
modelValue: String
|
|
},
|
|
style: DataViewLayoutOptionsStyle,
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|