Take the element-plus component library as an example, when you want to debug a component, you will find When the component is written with defineComponent, you can see the details of the data in the setup in devtools, such as the ElTable component:
However, when a component uses the < script setup > tag, the details of the data in the setup cannot be seen in devtools, such as the ElCheckbox component:
I want to know why it happens and what i can do to make it work.