I am new to vue3, in vue 2 version the "element-ui" uses the "option API" on "ElTree" component so that I can able to extend the 'ElTree' in my custom component and access 'ElTree' props like 'root, dragState'. But now the 'element-plus' library uses the "composition API" so I couldn't able to extend the "ElTree" and access the props 'root, dragState'.
What should I do now? Can I able to extend the "ElTree" component or do I have to use the 'ElTree' component directly from the 'element-plus'?