Wednesday, November 9, 2022

How to pass data to parent in vue.js

 
This is how we can pass data from child to parent component in vue js.

  1. child component should emit a custom event which pass data.
  2. parent component should listen for it via v-on

No comments:

Post a Comment

methods available in Dapper

  Dapper is a micro ORM library for .NET and .NET Core applications that allows you to execute SQL queries and map the results to objects. D...