Keep in mind that the parent variable is a firebase reference that has already been defined.
Using it like this works fine:
v-if="parent['key'] == foo"
However, when trying to access a child element like this:
v-if="parent['key'].child('somechild') == bar"
An error occurs:
[Vue warn]: Error in render: "TypeError: Cannot read property 'child' of undefined"