reference a prop in vue method code example
Example 1: vuejs props
export default {
name: 'Camera',
props: ['name', 'img'],
}
Example 2: vuejs accessing props from data
data: function() {
var theData = {
somevar: this.messageId,
// other object attributes
}
return theData;
}