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.