2023-06-02 16:04:55 +00:00
|
|
|
<script>
|
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
2023-10-02 10:46:09 +00:00
|
|
|
import DataViewLayoutOptionsStyle from 'primevue/dataviewlayoutoptions/style';
|
2023-06-02 16:04:55 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'BaseDataViewLayoutOptions',
|
|
|
|
extends: BaseComponent,
|
|
|
|
props: {
|
|
|
|
modelValue: String
|
|
|
|
},
|
2023-10-02 10:46:09 +00:00
|
|
|
style: DataViewLayoutOptionsStyle,
|
2023-06-02 16:04:55 +00:00
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
$parentInstance: this
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|