import { Plugin, PluginKey } from 'prosemirror-state';
// ...
addPmPlugins() {
return [
new Plugin({
key: new PluginKey('myPlugin'),
props: {
handleClickOn: (view, pos, node, nodePos, event, direct) => {
console.log("Node was clicked!");
}
},
})
];
}