mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-29 16:47:45 +02:00
14 lines
295 B
Vue
14 lines
295 B
Vue
<template>
|
|
<bookshelf-lazy-bookshelf page="books" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
async asyncData({ store, params, query }) {
|
|
// Set filter by
|
|
if (query.filter) {
|
|
await store.dispatch('user/updateUserSettings', { mobileFilterBy: query.filter })
|
|
}
|
|
}
|
|
}
|
|
</script>
|