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

22 lines
428 B
Vue

<script>
export default {
name: "Screen",
methods: {
isMobile() {
return window.matchMedia("only screen and (max-width: 768px)").matches
},
isTablet() {
return (
!this.isMobile() &&
window.matchMedia("only screen and (max-width: 1023px)").matches
)
},
isDesktop() {
return window.matchMedia("only screen and (min-width: 1024px)").matches
},
},
}
</script>