mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-04-05 16:25:45 +03:00
17 lines
344 B
JavaScript
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
|
|
}
|
|
}
|
|
}
|
|
}
|