0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-09 04:55:07 +00:00
VueTube/NUXT/components/Player/fullscreen.vue

18 lines
331 B
Vue
Raw Normal View History

2022-05-28 05:16:27 +00:00
<template>
<v-btn
fab
text
style="position: absolute; bottom: 0.25rem; right: 0"
@click.stop="$emit('fullscreen')"
>
<v-icon>{{ fullscreen ? "mdi-fullscreen-exit" : "mdi-fullscreen" }}</v-icon>
</v-btn>
</template>
<script>
export default {
props: ["fullscreen"],
emits: ["fullscreen"],
};
</script>