ser: function(){
axios.post("{% url 'url' %}",{
headers: {
'X-Requested-With': 'XMLHttpRequest'
},
params: {
text: this.note_t
}}).then((response) => {
this.load = response.data
}).catch(function (error) {
this.selected = error;
});
}