Answer the question
In order to leave comments, you need to log in
How to correctly pass a value through emit?
now writes count is not defined
<template>
<span>{{count}}</span>
<button @click="addToBasket">btn</button>
</template>>
<script>
export default {
name: 'ProductCard',
props: {
count: {
type: Number,
required: true
}
},
methods: {
addToBasket(){
this.$emit('addToBasket', count);
}
}
}
</script>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question