We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using support for 'use:obj.method={..}' returns:
<script> class Test { say(node, msg) { node.innerHTML = 'class: ' + msg; }; } const test2 = new Test(); const test1 = { say(node, msg) { node.innerHTML = 'obj: ' + msg; } }; function test(node, msg) { node.innerHTML = msg; }; let hi = 'Hi'; </script> <div use:test={hi}></div> <!-- svelte-ignore missing-declaration --> <div use:test1.say={hi}></div> <!-- svelte-ignore missing-declaration --> <div use:test2.say={hi}></div> -->
The text was updated successfully, but these errors were encountered:
This should be fixed now in 3.27.0.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Using support for 'use:obj.method={..}' returns:
The text was updated successfully, but these errors were encountered: