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