Commit 7fef9225 authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

WIP migration recherche intervenant vers VueJS

parent 5788d72c
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -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);
          });

      ;
    },
  }
}