Encountered a TypeScript error while using the Vue Composition API
let myElement = document.querySelectorAll('my-element')
The TS error I'm getting when trying to access it like this: Property '_props' does not exist on type 'Element'.ts
myElement._props.value
Here's what I have attempted:
let myElement = document.querySelector('my-element') as HTMLElement