mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-04-03 15:24:05 +03:00
16 lines
293 B
JavaScript
16 lines
293 B
JavaScript
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
computed: {
|
|
...mapGetters(['getTheme']),
|
|
phoneLayout() {
|
|
return this.$vuetify.breakpoint.xsOnly
|
|
},
|
|
theme() {
|
|
return this.getTheme()
|
|
},
|
|
state() {
|
|
return this.torrent.state.toLowerCase()
|
|
}
|
|
}
|
|
}
|