devtools
                                
                                 devtools copied to clipboard
                                
                                    devtools copied to clipboard
                            
                            
                            
                        feat(api): introduce inspectSetupState
closes #376
This is very useful when using defineComponent with setup returning the render function.
const Component = defineComponent({
  setup() {
    const name = ref('foo')
    inspectSetupState({
      name,
    })
    return h('div', name.value)
  },
})