Comments & Discussion
MS
Hello, what about use https://datatables.net/ in vue as a server-side, I used it but in jquey blade or js file.. in vue How??
DS
DRY
const filters = [
'category',
'id',
'title',
'content',
'global'
]
filters.forEach(filter => {
watch(eval(`search_${filter}`), (current, previous) => {
getPosts(
1,
search_category.value,
search_id.value,
search_title.value,
search_content.value,
search_global.value,
orderColumn.value,
orderDirection.value
)
})
})
I don't remember if I commented on it in a fresher course
Pagination links have gone...
Index.vue, line 121:
<Pagination :data="posts" @pagination-change-page="page => getPosts(page, selectedCategory)" />
There is no selectedCategory anymore.
Yeah, good catch, it should be
search_categoryinstead now.