[Vuejs]-Vue not seeing function passed from separate component

1👍

You call hideSnackBar as if it exists in showSnackBar context.

close_button_function: () => hideSnackBar()

Please, try

close_button_function: () => this.hideSnackBar()

Leave a comment