I am struggling to access some data I have bound to a component without success. How can I achieve this?
Below is my component:
export default {
name: 'component-vallingby',
data() {
return {
}
},
created() {},
methods: {}
}
And here is where I am rendering it. The variable "offer" is an object:
<component-vallingby v-bind="{ offer: offer }"></component-vallingby>