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

28 lines
495 B
Vue
Raw Normal View History

2022-05-28 05:16:27 +00:00
<template>
<v-btn
fab
text
2022-05-29 22:14:00 +00:00
small
2022-05-28 22:44:20 +00:00
color="white"
2022-06-07 18:29:57 +00:00
style="position: absolute; right: 0.25rem"
:style="fullscreen ? 'bottom: 3.5rem' : 'bottom: 0.25rem'"
2022-05-28 05:16:27 +00:00
@click.stop="$emit('fullscreen')"
>
2022-06-07 18:29:57 +00:00
<v-icon size="1.25rem">{{
fullscreen ? "mdi-fullscreen-exit" : "mdi-fullscreen"
}}</v-icon>
2022-05-28 05:16:27 +00:00
</v-btn>
</template>
<script>
export default {
2022-05-28 22:04:35 +00:00
props: {
fullscreen: {
type: Boolean,
required: true,
},
},
2022-05-28 05:16:27 +00:00
emits: ["fullscreen"],
};
</script>