rating-orama/core/views/js/components/search.js
2023-04-09 06:45:27 +02:00

19 lines
407 B
JavaScript

export function search() {
return {
url: '/tv-show?id=',
ttID: '',
isLoading: false,
isError: false,
submit() {
this.isLoading = true;
fetch(this.url+this.ttID).then(response => {
if (response.ok) {
window.location.href = this.url+this.ttID;
} else {
this.isLoading = false;
this.isError = true;
}
});
}
}
}