0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-09 21:15:06 +00:00
VueTube/NUXT/components/Player/loop.vue
2022-06-09 01:36:01 -04:00

17 lines
284 B
Vue

<template>
<v-btn fab text small @click="$emit('loop')">
<v-icon>{{ loop ? "mdi-sync-circle" : "mdi-sync" }}</v-icon>
</v-btn>
</template>
<script>
export default {
props: {
loop: {
type: Boolean,
default: false,
},
},
emits: ["loop"],
};
</script>