async loadTaskById() {
const {data} = await axios.get('[url]');
commit('MUTATE_FORM_DATA', data);
}
async created() {
// вызываю через mapActions по AJAX загрузить данные
await this.loadTaskById(this.$route.params.id);
this.formData.description = this.getOneTask.description
}
[config]
, а не [body]
запросаthis.$http.post('my_url', {params: {name: this.name}});