I got value, but push it into the history array. There is no value in history
searchinto(e) {
// console.log(e)
const value = this.data.search.content;
const history = this.data.history;
console.log(value);
history.push[value];
console.log(history);
this.setData({
history
})
},