This works as expected: ``` html <span v-text="$data | json"></span> ``` But if I introduce a `v-if` directive: ``` html <span v-if="someTrueValue" v-text="$data | json"></span> ``` I just get a empty object as the text.