advplyr.audiobookshelf-app/pages/bookshelf/library.vue

15 lines
283 B
Vue
Raw Normal View History

<template>
2021-12-04 19:56:29 -06:00
<bookshelf-lazy-bookshelf page="books" />
</template>
<script>
export default {
2021-12-04 19:56:29 -06:00
asyncData({ store, params, query }) {
// Set filter by
if (query.filter) {
store.dispatch('user/updateUserSettings', { mobileFilterBy: query.filter })
}
2021-11-19 10:29:26 -06:00
}
}
2021-11-19 10:29:26 -06:00
</script>