fix(vue): add transform to props list#437
Conversation
✅ Deploy Preview for unpic-solid ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-qwik ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-svelte ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-astro ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-vue ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-next ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-angular ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-preact canceled.
|
✅ Deploy Preview for unpic-lit ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for unpic-webc ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
ascorbic
left a comment
There was a problem hiding this comment.
That's great! Thanks for fixing this
🤖 I have created a release *beep* *boop* --- <details><summary>vue: 0.0.42</summary> ## [0.0.42](vue-v0.0.41...vue-v0.0.42) (2024-01-06) ### Bug Fixes * **vue:** add transform to props list ([#437](#437)) ([0dae7c1](0dae7c1)) </details> --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).

Hello 👋
This PR fix #436 and fix nuxt-modules/cloudinary#181 .
When using
useAttrs(), it doesn't disable attribute inheritance in a vue component. Sincetransformerisn't declared as a prop, vue will try to render it as an attribute.It doesn't matter server-side thanks to vue/server-renderer which clean the html. However there's no cleaning client-side so vue will render
transformeras an attribute.