Fixed unstyled config for BaseComponent
parent
fe60480678
commit
6d256bb4e0
|
@ -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 }));
|
return this._getPT(this.$config?.pt, undefined, (value) => this._getOptionValue(value, this.$name, { ...this.$params }) || ObjectUtils.getItemValue(value, { ...this.$params }));
|
||||||
},
|
},
|
||||||
isUnstyled() {
|
isUnstyled() {
|
||||||
return this.unstyled !== undefined ? this.unstyled : this.$config.unstyled;
|
return this.unstyled !== undefined ? this.unstyled : this.$config?.unstyled;
|
||||||
},
|
},
|
||||||
$params() {
|
$params() {
|
||||||
return { instance: this, props: this.$props, state: this.$data, parentInstance: this.$parentInstance };
|
return { instance: this, props: this.$props, state: this.$data, parentInstance: this.$parentInstance };
|
||||||
|
|
Loading…
Reference in New Issue