Currently, I am faced with a challenge while using a gantt chart Vue 3 component, which is a module that I have imported. Unfortunately, I do not have access to the underlying html of this component. Although I can view the ids and classes used through the Chrome inspector, I am unable to add a ref property or attach events as I cannot directly modify the html for each element. My workaround involved utilizing CSS to include a scroll bar for a specific id, but now I require adding an event listener to that particular element. How can I achieve this in Vue 3 using Typescript? The main purpose behind adding this event listener is to synchronize scrolling between two separate scroll areas. Given that I already have a scroll event implemented on my component, I need to find a way to interact with the scroll event of the external module's html element as well.