mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-05 03:05:03 +00:00
23 lines
408 B
Vue
23 lines
408 B
Vue
<template>
|
|
<v-btn
|
|
fab
|
|
text
|
|
color="white"
|
|
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: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
emits: ["fullscreen"],
|
|
};
|
|
</script>
|