[Vuejs]-Vue optionMergeStrategies Methods has no access to 'this' keyword

0👍

This is part of how the context this works in JS. You need to set it with bind, call or apply:

this.$options.customMethod.start.call(this)

Leave a comment