Added GalleriaService

pull/256/head
mertsincan 2020-03-31 16:28:08 +03:00
parent 7bb7b97d67
commit 1c8e4d7e9d
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import axios from 'axios'
export default class GalleriaService {
getImages() {
return axios.get('demo/data/galleria.json')
.then(res => res.data.data);
}
}