mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed unstyled config for BaseComponent
This commit is contained in:
parent
fe60480678
commit
6d256bb4e0
1 changed files with 1 additions and 1 deletions
|
@ -555,7 +555,7 @@ export default {
|
|||
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;
|
||||
return this.unstyled !== undefined ? this.unstyled : this.$config?.unstyled;
|
||||
},
|
||||
$params() {
|
||||
return { instance: this, props: this.$props, state: this.$data, parentInstance: this.$parentInstance };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue