fix: provide methods

This commit is contained in:
F-loat
2020-04-18 19:02:33 +08:00
committed by Dmitry Nagibin
parent 3f6927b4ee
commit 55d82fc7b2
@@ -157,8 +157,8 @@ export default {
provide () {
return {
ncEmit: this.$emit,
ncReset: this.reset
ncEmit: (...args) => this.$emit(...args),
ncReset: (...args) => this.reset(...args)
}
},