advplyr.audiobookshelf-app/pages/index.vue

17 lines
225 B
Vue
Raw Permalink Normal View History

2021-09-01 20:07:11 -05:00
<template>
2021-12-04 19:56:29 -06:00
<div class="w-full h-full"></div>
2021-09-01 20:07:11 -05:00
</template>
<script>
export default {
asyncData({ redirect }) {
return redirect('/bookshelf')
},
2021-09-01 20:07:11 -05:00
data() {
2021-12-04 19:56:29 -06:00
return {}
2021-09-01 20:07:11 -05:00
},
2021-12-04 19:56:29 -06:00
computed: {},
methods: {}
2021-09-01 20:07:11 -05:00
}
</script>