1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-05-04 06:14:57 +03:00

FEATURE - New settings modal ()

Co-authored-by: Tyler Mayoff <tyler@tylermayoff.com>
This commit is contained in:
Daan Wijns 2020-08-27 19:33:32 +02:00 committed by GitHub
parent a00a6d539e
commit 9463d83752
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 566 additions and 30 deletions

View file

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