Loading front/Intervenant/Recherche.vue +11 −4 Original line number Diff line number Diff line Loading @@ -46,10 +46,17 @@ export default { console.log(this.searchTerm); axios.post( Util.url("intervenant/recherche-json"), {term: this.searchTerm} ).then(response => { this.intervenants = response.data; Util.url("intervenant/recherche-json"), { term: 'dupo' }) .then(function (response) { console.log(response.data); }) .catch(function (error) { console.log(error); }); ; }, } } Loading Loading
front/Intervenant/Recherche.vue +11 −4 Original line number Diff line number Diff line Loading @@ -46,10 +46,17 @@ export default { console.log(this.searchTerm); axios.post( Util.url("intervenant/recherche-json"), {term: this.searchTerm} ).then(response => { this.intervenants = response.data; Util.url("intervenant/recherche-json"), { term: 'dupo' }) .then(function (response) { console.log(response.data); }) .catch(function (error) { console.log(error); }); ; }, } } Loading