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

11 lines
175 B
Vue

<script>
export default {
name: "Screen",
methods: {
isMobile() {
return window.matchMedia("only screen and (max-width: 760px)").matches
},
},
}
</script>