VueTube/NUXT/components/Player/fullscreen.vue

25 lines
424 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-05-29 22:14:00 +00:00
style="position: absolute; bottom: 0.25rem; right: 0.25rem"
2022-05-28 05:16:27 +00:00
@click.stop="$emit('fullscreen')"
>
<v-icon>{{ fullscreen ? "mdi-fullscreen-exit" : "mdi-fullscreen" }}</v-icon>
</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>