primevue-mirror/components/lib/treeselect/BaseTreeSelect.vue

88 lines
1.8 KiB
Vue
Raw Normal View History

2023-05-26 11:58:40 +00:00
<script>
import BaseComponent from 'primevue/basecomponent';
import TreeSelectStyle from 'primevue/treeselect/style';
2023-05-26 11:58:40 +00:00
export default {
name: 'BaseTreeSelect',
extends: BaseComponent,
props: {
modelValue: null,
options: Array,
scrollHeight: {
type: String,
default: '400px'
},
placeholder: {
type: String,
default: null
},
disabled: {
type: Boolean,
default: false
},
tabindex: {
type: Number,
default: null
},
selectionMode: {
type: String,
default: 'single'
},
appendTo: {
type: [String, Object],
2023-05-26 11:58:40 +00:00
default: 'body'
},
emptyMessage: {
type: String,
default: null
},
display: {
type: String,
default: 'comma'
},
metaKeySelection: {
type: Boolean,
default: false
2023-05-26 11:58:40 +00:00
},
inputId: {
type: String,
default: null
},
inputClass: {
type: [String, Object],
default: null
},
inputStyle: {
type: Object,
default: null
},
inputProps: {
type: null,
default: null
},
panelClass: {
type: [String, Object],
default: null
},
panelProps: {
type: null,
default: null
},
ariaLabelledby: {
2023-05-26 11:58:40 +00:00
type: String,
default: null
},
ariaLabel: {
2023-05-26 11:58:40 +00:00
type: String,
default: null
}
},
style: TreeSelectStyle,
provide() {
return {
$parentInstance: this
};
2023-05-26 11:58:40 +00:00
}
};
</script>