edison
edison
 The render function returned by setup is from the production build. However, the Vue you are using is in DEV mode, so a warning is displayed. @yakudik The render...
@yakudik ```diff -const refHeader = useTemplateRef('refHeader') +const headerRef = useTemplateRef('refHeader') // use a diff var name is a workaround ... ```
@bee1an this is a bug but an edge case.
Thanks @kkuegler
> Why was this Issue closed ? The problem is still there with no fix. see https://github.com/vuejs/core/issues/5312#issuecomment-2657383224 Sorry, Does this solve your problem?
duplicate of #430
> #9012 has fixed the second issue, i.e. prop's defaults are used as a fallback in case value was removed on a host. But the first one (prop's defaults should...
/ecosystem-ci run
This is the expected behavior. A boolean prop cannot be undefined in Vue, it will always be cast to false at runtime. so the types should reflect that.
I tested the preview package(`pnpm add https://pkg.pr.new/vue@12042`) of this PR in the reproduction of #12017. The `b.vue` is still mounted twice.