Sorry, but Bet365 Affiliates programm doesn't support in your country


`, data: function () { return { searchquery: '', categoryName: '', data_results: [], img: 'data:image/gif;base64,', image: '/uploads/', dataObj: {}, inputOpen: false } }, methods: { autoComplete() { this.data_results = []; if (this.searchquery.length > 2) { axios.get('/api/search', {params: {searchquery: this.searchquery}}).then(response => { // this.data_results = this.dataObj = response.data; this.data_results = response.data; /*{{ getCategoryTitle(result.category_id) }}*/ }); } }, highLight(text) { return text.replace(new RegExp(this.searchquery, 'gi'), '$&'); }, clickOutside(e) { if (!this.$el.contains(e.target) && this.inputOpen === true) { this.inputOpen = false this.data_results = [] this.searchquery = '' } } }, created() { document.addEventListener('click', this.clickOutside); this.$on('hook:beforeDestroy', () => document.removeEventListener('click', this.clickOutside)); }, }); const app = new Vue({ el: '.header-search' }); -->