use props in methods vue code example
Example 1: vuejs props
// Component file
<script>
export default {
props: {
name: {
type: String,
required: true
}
}
};
</script>
// File you call your component
<template>
<your-component name="name"></your-component>
</template>
Example 2: vuejs props
export default {
name: 'Camera',
props: ['name', 'img'],
}
Example 3: vuejs accessing props from data
data: function() {
var theData = {
somevar: this.messageId,
// other object attributes
}
return theData;
}