vue see props value code example
Example: vue get props into data
props : {
users : Array,
currentuser: Number,
todoId : Number
},
mounted() {
this.current = this.currentuser
},
data(){
return{
current: null
}