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

18 lines
375 B
Vue

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