Generalise BASE_URL

This commit is contained in:
Raymonzut
2020-05-11 21:36:16 +02:00
parent 5053753639
commit 874540a43d
+1 -1
View File
@@ -1,6 +1,6 @@
module.exports = {
getPosts: function(id) {
const BASE_URL = 'http://localhost:5000/api/posts'
const BASE_URL = '/api/posts'
const URL = BASE_URL + (id ? `/${id}` : '?sort=-1')
this.$http