We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e690610 commit 10e6d99Copy full SHA for 10e6d99
components/table/Table.jsx
@@ -158,7 +158,7 @@ export default {
158
sPagination: this.getDefaultPagination(this.$props),
159
pivot: undefined,
160
sComponents: createComponents(this.components),
161
- filterDataCnt: 0
+ filterDataCnt: 0,
162
};
163
},
164
watch: {
components/vc-checkbox/src/Checkbox.jsx
@@ -108,6 +108,7 @@ export default {
108
value,
109
...others
110
} = getOptionProps(this);
111
+ const { class: className } = this.$attrs;
112
const globalProps = Object.keys({ ...others, ...this.$attrs }).reduce((prev, key) => {
113
if (key.substr(0, 5) === 'aria-' || key.substr(0, 5) === 'data-' || key === 'role') {
114
prev[key] = others[key];
0 commit comments