mirror of
https://github.com/sudoxnym/audiobookshelf-atv.git
synced 2026-07-27 21:42:52 +00:00
14 lines
154 B
Vue
14 lines
154 B
Vue
|
|
<template>
|
||
|
|
<div>Latest</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
watch: {},
|
||
|
|
computed: {},
|
||
|
|
methods: {}
|
||
|
|
}
|
||
|
|
</script>
|