platypush/platypush/backend/http/webapp/src/utils/Screen.vue

19 lines
401 B
Vue
Raw Normal View History

2020-12-14 02:13:55 +01:00
<script>
export default {
name: "Screen",
methods: {
isMobile() {
return window.matchMedia("only screen and (max-width: 760px)").matches
},
2020-12-26 15:03:12 +01:00
isTablet() {
return !this.isMobile() && window.matchMedia("only screen and (max-width: 960px)").matches
},
isDesktop() {
return window.matchMedia("only screen and (min-width: 1152px)").matches
},
2020-12-14 02:13:55 +01:00
},
}
</script>