a column data is showing in array : ["1k","2k","3k"] I used foreach to filter and the data type is showing string and it shows like this again: ["1k","2k","3k"]
Thanks
code:
data() {
return {
print: [],
printPrice: [],
},
computed: {
getImageDetails(){
this.photographersdata.forEach((details) => {
if(details.id === parseInt(this.imageId)){
this.print = details.print;
this.printPrice = details.print_price;
}
})
},```