Pass method from parent component to child component in vuejs Pass method from parent component to child component in vuejs vue.js vue.js

Pass method from parent component to child component in vuejs


You are trying to pass a function as literal as described here. You end up with test prop being String... You should use : to indicate dynamic binding as follows:

<child-component :test="test"><child-component>"