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
ref<any>()
any
Ref<any>
3.2.26
interface Props { error2: any } const props = defineProps<Props>() const { error2 } = toRefs(props)
error2 should be Ref<any>.
error2
error2 is any.
The text was updated successfully, but these errors were encountered:
fix(types): make toRefs return correct type(fix vuejs#5188) (vuejs#…
toRefs
7942a19
…5188)
5ac7030
No branches or pull requests
Version
3.2.26
Steps to reproduce
What is expected?
error2
should beRef<any>
.What is actually happening?
error2
is any.The text was updated successfully, but these errors were encountered: