I am using a gantt chart, Vue 3 component, that is a module I imported, so I have no access to the underlying html. I am able to see the ids and classes that are used via the the Chrome inspector, but no way to add a ref property or add events (since I don't have access to the html for each element). I used CSS to add a scroll bar to one of the ids, but also need to add an event listener to the element with that specific id. How can I do this in Vue 3 with Typescript? The reason I need to add an event listener is so I can scroll two scroll areas at the same time. I already have the scroll event on my component and need to be able to access the scroll event of the external module html element, as well.