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
It used to be impossible to create computed properties with cyclical dependencies:
<script> export default { computed: { a: ({ b }) => b + 1, b: ({ a }) => a + 1 } }; </script>
For some reason (presumably v2 changes) that doesn't fail any more. The same goes for computed properties that depend on themselves.
The text was updated successfully, but these errors were encountered:
Detection is working correctly in Svelte 3
Sorry, something went wrong.
No branches or pull requests
It used to be impossible to create computed properties with cyclical dependencies:
For some reason (presumably v2 changes) that doesn't fail any more. The same goes for computed properties that depend on themselves.
The text was updated successfully, but these errors were encountered: