zerozoo-a / zerozoo-a.github.io

“Be a prisoner of the past or a pioneer of the future. The choice is yours.” Deepak Chopra
https://zerozoo-a.github.io/
MIT License
2 stars 0 forks source link

vue의 iterated emit #77

Open zerozoo-a opened 1 year ago

zerozoo-a commented 1 year ago
<template>
    <div v-for="(book, i) in books">
        <button v-for="(item, i) in items"
            @click="handler(item)"
        />
    </div>
</template>

<script>
    @Emit('handler')
    handler(item){
    }
</script>

react도 비슷하게 이런 문제가 있고 iterate를 돌면서 마지막 인자로 업데이트가 고정된다. 어떻게 문제를 해결했더라..