mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-11 22:44:47 +02:00
14 lines
155 B
Vue
14 lines
155 B
Vue
|
<template>
|
||
|
<div>Authors</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
watch: {},
|
||
|
computed: {},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|