mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Refactor #3965 - Update BaseComponent & DataTable
This commit is contained in:
parent
57b6f2c63a
commit
6c39522495
11 changed files with 78 additions and 76 deletions
|
@ -79,9 +79,6 @@ export default {
|
|||
cx(key = '', params = {}) {
|
||||
return !this.isUnstyled ? this._getOptionValue(this.$css.classes, key, { instance: this, props: this.$props, state: this.$data, parentInstance: this.$parentInstance, ...params }) : undefined;
|
||||
},
|
||||
cxo(key = '', params = {}) {
|
||||
return this.cx(key, params);
|
||||
},
|
||||
sx(key = '', when = true, params = {}) {
|
||||
if (when) {
|
||||
const self = this._getOptionValue(this.$css.inlineStyles, key, { instance: this, props: this.$props, state: this.$data, parentInstance: this.$parentInstance, ...params });
|
||||
|
@ -91,9 +88,6 @@ export default {
|
|||
}
|
||||
|
||||
return undefined;
|
||||
},
|
||||
sxo(key = '', when = true, params = {}) {
|
||||
return this.sx(key, when, params);
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue