Skip to content

Tag: vuejs3

Object property UNDEFINED in VUE v-for

I have this object inside an array called places which contains 20 similar objects and im using v-for to get each objects data into a div, other properties work fine, but when it comes to the openingHours.text property, it gives an error of undefined you can check the images below for more clarity figure 1 fi…

Cannot read string value of an object returned by params

I am just a beginner working on the note app which uses Laravel and Vue. And now I am having trouble trying to read the string value of an object returned by params from router.js and received by message inside props of MyIndex.vue. While the I think the object had been received, when alerting the user with t…

Vue3 – Ace Editor on v-model change

I am using Ace Editor with Vue3: It’s being initialized like this: Now, I want to automatically persist the value of currentRecord.prompt in my database on the backend. To do this, I was thinking of firing of a request to the backend every time the value of currentRecord.prompt was changed in the editor…