[Vuejs]-Pass props through template

0👍

In your example, you pass custom config through props. You can access it in the render method with this.$props.

Take a look at the doc to see how to pass data to child component.

Leave a comment