mirror of
https://github.com/iptv-org/epg
synced 2025-12-17 02:47:02 -05:00
21 lines
396 B
JavaScript
21 lines
396 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
|
|
}
|
|
}))
|
|
})
|