0👍
✅
The ButtonSidebar emits an addCodeBlock
event but here
<ButtonSidebar @add="addPageBlock"/>
The parent is listening for an add
event.
Try changing it like so:
<ButtonSidebar @addCodeBlock="addPageBlock"/>
Source:stackexchange.com