[Vuejs]-How to use my custom API with Vue Metronic template Axios

3👍

To use this code you should remove two things:

  1. Remove MockService initialization from the main.js
// Remove this to disable mock API
MockService.init();
  1. Remove API initialization from the main.js
// API service init
ApiService.init();

Leave a comment