Skip to content

Commit

Permalink
Add datalink click event for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
akhuoa committed May 2, 2024
1 parent b7b4411 commit aee0f02
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ export default {
console.log('mounted app')
EventBus.on('contextUpdate', (payLoad) => {
console.log('contextUpdate', payLoad)
})
});
EventBus.on('datalink-clicked', (payLoad) => {
console.log('datalink-clicked', payLoad)
});
},
}
</script>
Expand Down

0 comments on commit aee0f02

Please sign in to comment.