zydx-plus 1.32.277 → 1.32.278

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": "zydx-plus",
3
- "version": "1.32.277",
3
+ "version": "1.32.278",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -132,6 +132,7 @@
132
132
  </tr>
133
133
  </table>
134
134
  </div>
135
+ <slot></slot>
135
136
  </div>
136
137
  </div>
137
138
  </div>
@@ -266,6 +267,14 @@ export default {
266
267
  methods: {
267
268
  customButTap(e,d) {
268
269
  if(e.key === 'option') d.open = !d.open
270
+ if(e.key === 'modify') {
271
+ this.$emit('modify', d)
272
+ return
273
+ }
274
+ if(e.key === 'del') {
275
+ this.$emit('del', d)
276
+ return
277
+ }
269
278
  e.onClick(e)
270
279
  },
271
280
  init() {
package/src/index.js CHANGED
@@ -79,7 +79,7 @@ function install(app) {
79
79
  }
80
80
 
81
81
  export default {
82
- version: '1.32.277',
82
+ version: '1.32.278',
83
83
  install,
84
84
  Calendar,
85
85
  Message,