왜 안되었는지는 모르겠지만 부모 컴포넌트에서 아래와 같이 적용하니 되네요! 혹시 몰라 남겨봅니다.
<AppCard
:title="post.title"
:contents="post.contents"
:type="post.type"
:is-like="post.isLike"
@click="$emit('toggleLike', (post.isLike = !post.isLike))"
>
</AppCard>
왜 안되었는지는 모르겠지만 부모 컴포넌트에서 아래와 같이 적용하니 되네요! 혹시 몰라 남겨봅니다.
<AppCard
:title="post.title"
:contents="post.contents"
:type="post.type"
:is-like="post.isLike"
@click="$emit('toggleLike', (post.isLike = !post.isLike))"
>
</AppCard>