[Vuejs]-VueJS Vuex Axios cURL API for WordPress

0👍

Add a new action:

actions: {
  async fetch({ commit }) {
    ...
  },
  async deletePost({ dispatch }, postId) {
    await axios.delete(
      `http://localhost:8080/wp-json/wp/v2/posts/${postId}`
    );
    // fetching posts again after delete is completed
    await dispatch('fetch');
  },
}

Leave a comment