1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-27 10:10:50 +03:00

removed console.log

This commit is contained in:
zeot 2018-10-17 10:15:23 +03:00
parent d6eb20dae2
commit 103c9a605f

View File

@ -3,7 +3,6 @@ import axios from 'axios'
class CategoryItemService { class CategoryItemService {
async getCategoryItem(): Promise<ICategoryItem[]> { async getCategoryItem(): Promise<ICategoryItem[]> {
const { data } = await axios.get('api/category/sth6l9jl', {}) const { data } = await axios.get('api/category/sth6l9jl', {})
console.log(data);
return data; return data;
} }