0👍
try this
async loadCenters: function (soc) {
const params = { society: soc }
try {
const { data } = await axios.get('/ajax/load-centers', { params })
console.log( 'Request Executed' )
console.log( data )
} catch ( e ) {
console.log(e)
}
}
- [Vuejs]-Add button value to data on click
- [Vuejs]-Vue.js: v-for behaves different with template literals
Source:stackexchange.com