I am reviewing an app build in Vuejs (I am not a vue developer), so be patient with me.
I found this line of code:
const {property, $rxFirebase: {actions: {properties}}} = this
I guess this works as in other languages. "This" is assigning values to the object in the left.
I am trying to read also {sources: {properties}}, so I have added the code like this:
const {property, $rxFirebase: {actions: {properties}, sources: {properties}}} = this
But when I build it, I get an error:
Module build failed: Duplicate declaration "properties"
Any ideas?