[Vuejs]-How to pass Data from Test1 Component to Test2 Component in Vue.js?

0👍

likes

{{ totalPrice }}

in Test2.vue , right?

0👍

Try sending your value through props

<Test2 :totalPrice="totalValue"></Test2>

and then use the props in the Test2 Component

export default {
   props: {
    totalPrice: {
      type: Number,
    }
  }
}

and in the template

<template>
    <h2>{{ totalPrice }}</h2>
</template>

Leave a comment