I am passing a props to a component:
{{messageId}} // other html code
From the data() method, you can reference the component's properties using this.
data()
this
So in your case:
data: function() { var theData = { somevar: this.messageId, // other object attributes } return theData; }