mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
20 lines
397 B
JavaScript
20 lines
397 B
JavaScript
document.addEventListener('alpine:init', () => {
|
|
Alpine.data('list', () => ({
|
|
isLoading: true,
|
|
query: '',
|
|
_query: '',
|
|
items: [],
|
|
|
|
search() {
|
|
this._query = this.query.toLowerCase()
|
|
},
|
|
|
|
async init() {
|
|
this.items = await fetch('_items.json')
|
|
.then(response => response.json())
|
|
.catch(console.log)
|
|
|
|
this.isLoading = false
|
|
}
|
|
}))
|
|
})
|