Error in v-on handler: "TypeError: _vm.functionByName(...) is not a function"found in
在Vue 2中,动态绑定函数时,你可能会遇到一个问题,即在事件处理函数中访问this时,this不再指向Vue实例。这通常是因为事件处理函数的上下文(context)发生了改变。解决这个问题的常见方法是在创建函数时保留对Vue实例的引用,或者使用箭头函数,因为箭头函数不会创建自己的this上下文。
// 使用箭头函数来绑定事件 render(h) {return h('button', { on: { click: () => this.doSomething() } }, 'Click me');}
<template><button @click="() => doSomething()">Click me</button> </template>