mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #4322 - PassThrough: component option improvements
This commit is contained in:
parent
106565fd85
commit
f000abc35c
1 changed files with 1 additions and 1 deletions
|
@ -552,7 +552,7 @@ export default {
|
|||
return this._getPT(this.$config?.pt, undefined, (value) => ObjectUtils.getItemValue(value, { instance: this }));
|
||||
},
|
||||
defaultPT() {
|
||||
return this._getPT(this.$config?.pt, undefined, (value) => this._getOptionValue(value, this.$name, { instance: this }) || ObjectUtils.getItemValue(value, { instance: this }));
|
||||
return this._getPT(this.$config?.pt, undefined, (value) => this._getOptionValue(value, this.$name, { ...this.$params }) || ObjectUtils.getItemValue(value, { ...this.$params }));
|
||||
},
|
||||
isUnstyled() {
|
||||
return this.unstyled !== undefined ? this.unstyled : this.$config.unstyled;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue