Hello, I believe this has to do with you trying to access the dataVar object inside the dataVar object.
You can instead do something like this:
dataVar = new function() {
this.id = "1",
this.moreData = {
phoneNum: "1231231239",
stuff: "two"
},
this.header = "Insert",
this.instructions = [
{
title:"title1",
content: "Call the number " + this.moreData.phoneNum + " and then continue the other instructions."
},{
title:"title1",
content: "Another instruction"
}
],
this.NIP = 0
};
Now with:
<div v-for="instruction in instructions">
<span>{{instruction.content}}</span>
</div>
The output is:
Call the number 1231231239 and then continue the other instructions.
Another instruction