search_null() {
var str = this.search;
this.brands.forEach(function(item) {
let re = new RegExp(item.name, 'g');
str.replace(re,' ');
console.log(re)
console.log(str)
});
this.search = str;
},