mirror of
https://github.com/audiobookshelf/audiobookshelf-web.git
synced 2025-08-20 09:18:37 +02:00
16 lines
225 B
Vue
16 lines
225 B
Vue
|
<template>
|
||
|
<div class="w-full h-full max-w-5xl mx-auto px-2">
|
||
|
<p>Not done yet..</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {},
|
||
|
mounted() {}
|
||
|
}
|
||
|
</script>
|