mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
18 lines
375 B
Vue
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>
|