mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-07-29 22:20:51 +00: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>
|