(e: MediaQueryListEvent)
| 6 | const mediaQuery = window.matchMedia("(max-width: 992px)"); |
| 7 | |
| 8 | const fn = (e: MediaQueryListEvent) => (isPhone.value = e.matches); |
| 9 | |
| 10 | onMounted(() => { |
| 11 | isPhone.value = mediaQuery.matches; |
no outgoing calls
no test coverage detected