1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-04-05 16:25:45 +03:00
VueTorrent/src/mixins/FullScreenModal.js
Daan Wijns 9463d83752
FEATURE - New settings modal ()
Co-authored-by: Tyler Mayoff <tyler@tylermayoff.com>
2020-08-27 19:33:32 +02:00

17 lines
344 B
JavaScript

export default {
computed: {
phoneLayout() {
return this.$vuetify.breakpoint.xsOnly
},
dialogWidth() {
return this.phoneLayout ? '100%' : '80%'
}
},
watch: {
dialog(visible) {
if (!visible) {
this.tab = null
}
}
}
}