koel/resources/assets/js/components/screens/home/ViewAllRecentSongsButton.vue
2024-07-06 17:44:57 +02:00

18 lines
375 B
Vue

<template>
<Btn highlight rounded small @click.prevent="goToRecentlyPlayedScreen">
View All
</Btn>
</template>
<script setup lang="ts">
import { useRouter } from '@/composables'
import Btn from '@/components/ui/form/Btn.vue'
const { go } = useRouter()
const goToRecentlyPlayedScreen = () => go('recently-played')
</script>
<style scoped lang="postcss">
</style>