bri-components 1.2.93 → 1.2.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bri-components",
3
- "version": "1.2.93",
3
+ "version": "1.2.94",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -173,6 +173,13 @@
173
173
  changePageSize (...params) {
174
174
  this.$emit("changePageSize", ...params);
175
175
  }
176
+ },
177
+ watch: {
178
+ "listPropsObj.checkboxOption.selectedRowKeys" (newVal) {
179
+ if (!newVal.length && this.$refs.list.selections) {
180
+ this.$refs.list.selections = [];
181
+ }
182
+ }
176
183
  }
177
184
  };
178
185
  </script>