create(){
var obj = {
"title": this.title
}
this.$http.path(
url,
obj,
{ headers: {
Authorization: `Bearer ${localStorage.getItem('token')}` }
}
).then(({ data }) => {
console.log(data)
alert('tadam')
});
},