const app = new Vue({
el: '#app',
data: {
posts: [],
}
axios.get('
http://asdasd/post/{slug}') // Как правильно добавить slug в URL?
.then(response => {
console.log(response);
this.posts = response.data;
})
.catch(function (error) {
console.log(error);
});