[Vuejs]-Vuetify Table โ€“ rendering column value based on a API response

0๐Ÿ‘

My solution is to get attributeNames for ids in the table on mounted or created hook, and then get attributeName for specific id in methods based on attributeNames

0๐Ÿ‘

I think your function displayAttributeNameBasedOnId returns nothing
on your try #2 can you add a return statement:

  return await axios.post(window.MTS_URL, data).then((response) => {

let us know if it worked !

Leave a comment