Guillaume Chau
Guillaume Chau
You mean [this](https://devtools.vuejs.org/guide/open-in-editor.html#customize-request)?
That's the end goal. 😸 🐈
Would you mind allowing us to push changes to your branch?
I mean I don't think we technically have the necessary rights to be able to push to this branch.
Let me try again
Great it works :) Sorry for the messages, was probably me screwing something up :man_shrugging:
```js import { defineComponent, reactive, h } from 'vue' export default defineComponent({ name: 'SetupRender', setup () { const state = reactive({ name: 'Foo bar' }) return () => { return...
This is tricky because the devtools gets the render function as the setup result.
You can use JSX spread: ```jsx const data = { props: { onUpload: 'foo', }, } return ```
Did you try on Firefox to see if it is also affected?