mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-20 20:05:44 +02:00
16 lines
225 B
Vue
16 lines
225 B
Vue
<template>
|
|
<div class="w-full h-full"></div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
asyncData({ redirect }) {
|
|
return redirect('/bookshelf')
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {}
|
|
}
|
|
</script>
|