[Vuejs]-[Vue warn]: Error in v-on handler: "ReferenceError: fb is not defined"

0👍

The naked, unqualified fb variable is in global scope, and evidently not defined there. If fb is a vue component property, it should be referenced as this.fb. If it’s not a vue property it is probably really undefined.

Leave a comment