vue-draggable-reizable cannot bind click event solution

Recently I have been using the vue-draggable-reizable plug-in, but I have been unable to bind the click event. The next best thing is to refer to @activated="onActivated" provided in the documentation on GitHub. During the development process, I found that onActivated would also be triggered when dragging. I had no choice but to continue reading the information, and finally found the answer in the closed issues on GitHub.

The correct way to write it is: @click.native="clickHandler"

Record it, hope it can also help friends who are troubled

Guess you like

Origin blog.csdn.net/qq_35696889/article/details/110932870