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
version : 1.0.0-beta.11
This pattern a bug or correct?
example
<template> <div> count : {{count}} test.count : {{test.count}} </div> </template> <script lang="ts"> import { defineComponent, ref } from '@vue/composition-api' setup () { const count = ref(0) return { count, test: { count } } } }) </script>
result render
count : 0 test.count : {"value":0}
I was expecting both to return 0.
The text was updated successfully, but these errors were encountered:
That's working as intended, please check vuejs/core#1682
Sorry, something went wrong.
No branches or pull requests
version : 1.0.0-beta.11
This pattern a bug or correct?
example
result render
I was expecting both to return 0.
The text was updated successfully, but these errors were encountered: