BlogPlaygroundOne

Display & Platform

The display composable provides a multitude of information about the current device


Usage

The useDisplay composable provides information on multiple aspects of the current device.

This enables you to control various aspects of your application based upon the window size, device type, and SSR state. This composable works in conjunction with grids and other responsive utility classes (e.g. display).

The following shows how to access the application’s display information:

Composition.vue
<script setup>
  import { onMounted } from 'vue'
  import { useDisplay } from 'vuetify'

  const { mobile } = useDisplay()

  onMounted(() => {
    console.log(mobile.value) // false
  })
</script>

If you are still using the Options API, you can access the display information on the global $vuetify variable. Note that refs are unwrapped here, so you don’t need .value.

Options.vue
<script>
  export default {
    mounted () {
      console.log(this.$vuetify.display.mobile)
    },
  }
</script>

API

ComponentDescription
useDisplayComposable

Breakpoints and Thresholds

Threshold values generate the ranges used for various breakpoints seen throughout vuetify and the useDisplay composable. The system uses an “and up” mentality starting from xs at 0px. The default threshold values are displayed below.

DeviceCodeTypeRange
Extra smallxsSmall to large phone< 600px
SmallsmSmall to medium tablet600px > < 840px
MediummdLarge tablet to laptop840px > < 1145px
LargelgLaptop to desktop1145px > < 1545px
Extra largexl1080p to 1440p desktop1545px > < 2138px
Extra extra largexxl4k and ultra-wide> 2138px
Specification

These ranges power the various additional AndUp / AndDown properties accessible in useDisplay

{
  smAndDown: boolean // < 960px
  smAndUp: boolean // > 600px
  mdAndDown: boolean // < 1280px
  mdAndUp: boolean // > 960px
  lgAndDown: boolean // < 1919px
  lgAndUp: boolean // > 1280px
  xlAndDown: boolean // < 2559px
  xlAndUp: boolean // > 1920px
}

Options

The useDisplay composable has several configuration options, such as the ability to define custom values for breakpoints.

For example, the thresholds option modifies the values used for viewport calculations. The following snippet overrides thresholds values xs through lg and sets mobileBreakpoint to sm.

src/plugins/vuetify.js
import { createVuetify} from 'vuetify'

export default createVuetify({
  display: {
    mobileBreakpoint: 'sm',
    thresholds: {
      xs: 0,
      sm: 340,
      md: 540,
      lg: 800,
      xl: 1280,
    },
  },
})

Examples

In the following example, we use a switch statement and the current breakpoint name to modify the height property of the v-card component:

Component.vue
<template>
  <v-card :height="height">
    ...
  </v-card>
</template>

<script setup>
  import { computed } from 'vue'
  import { useDisplay } from 'vuetify'

  const { name } = useDisplay()

  const height = computed(() => {
    // name is reactive and
    // must use .value
    switch (name.value) {
      case 'xs': return 220
      case 'sm': return 400
      case 'md': return 500
      case 'lg': return 600
      case 'xl': return 800
      case 'xxl': return 1200
    }

    return undefined
  })
</script>

Interface

{
  // Breakpoints
  xs: boolean // 0 - 599
  sm: boolean // 600 - 839
  md: boolean // 840 - 1144
  lg: boolean // 1145 - 1544
  xl: boolean // 1545 - 2137
  xxl: boolean // >= 2138
  smAndDown: boolean // < 840
  smAndUp: boolean // > 599
  mdAndDown: boolean // < 1145
  mdAndUp: boolean // > 839
  lgAndDown: boolean // < 1545
  lgAndUp: boolean // > 1144
  xlAndDown: boolean // < 2138
  xlAndUp: boolean // > 1544

  // true if screen width < mobileBreakpoint
  mobile: boolean
  mobileBreakpoint: number | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'

  // Current breakpoint name (e.g. 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl')
  name: string

  // The current value of window.innerHeight and window.innerWidth
  height: number
  width: number

  // Device userAgent information
  platform: {
    android: boolean
    ios: boolean
    cordova: boolean
    electron: boolean
    chrome: boolean
    edge: boolean
    firefox: boolean
    opera: boolean
    win: boolean
    mac: boolean
    linux: boolean
    touch: boolean
    ssr: boolean
  }

  // The values used to make Breakpoint calculations
  thresholds: {
    xs: number
    sm: number
    md: number
    lg: number
    xl: number
    xxl: number
  }
}

Using Setup

Use the useDisplay composable alongside Vue 3’s setup function to harness the power of the Composition API. In this example we show how to toggle the fullscreen property of v-dialog when the mobile breakpoint is active.

Component.vue
<template>
  <v-dialog :fullscreen="mobile">
    ...
  </v-dialog>
</template>

<script setup>
  import { useDisplay } from 'vuetify'

  const { mobile } = useDisplay()
</script>

Breakpoint conditionals

Breakpoint and conditional values return a boolean that is derived from the current viewport size. Additionally, the breakpoint composable follows the Vuetify Grid naming conventions and has access to properties such as xs, smAndUp, mdAndDown, and many others. In the following example we use the setup function to pass the xs and mdAndUp values to our template:

Component.vue
<template>
  <v-sheet
    :min-height="mdAndUp ? 300 : '20vh'"
    :rounded="xs"
  >
    ...
  </v-sheet>
</template>

<script setup>
  import { useDisplay } from 'vuetify'

  // Destructure only the keys you want to use
  const { xs, mdAndUp } = useDisplay()
</script>

Using the dynamic display values, we are able to adjust the minimum height of v-sheet to 300 when on the medium breakpoint or greater and only show rounded corners on extra small screens:

Component Mobile Breakpoints

Some components within Vuetify have a mobile-breakpoint property which allows you to override the default value. These components reference the global mobileBreakpoint value that is generated at runtime using the provided options in the vuetify.js file.

The following components have built in support for the mobile-breakpoint property:

By default, mobileBreakpoint is set to lg, which means that if the window is less than 1280 pixels in width (which is the default value for the lg threshold), then the useDisplay composable will update its mobile value to true.

For example, the v-banner component implements different styling when its mobile versus desktop. In the following example, The first banner uses the global mobile-breakpoint value of lg while the second overrides this default with 580:

Component.vue
<template>
  <div>
    <v-banner>
      ...
    </v-banner>

    <v-banner mobile-breakpoint="580">
      ...
    </v-banner>
  </div>
</template>

<script setup>
  import { onMounted } from 'vue'
  import { useDisplay } from 'vuetify'

  const { width, mobile } = useDisplay()

  onMounted(() => {
    console.log(width.value) // 960
    console.log(mobile.value) // true
  })
</script>

If the screen width is 1024 pixels, the second banner would not convert into its mobile state.

useDisplay overrides

Specify a custom mobileBreakpoint value directly to the useDisplay composable and override the global value. In the following example we use a custom mobileBreakpoint value of 580:

Component.vue
<script setup>
  import { onMounted } from 'vue'
  import { useDisplay } from 'vuetify'

  const { mobile } = useDisplay({ mobileBreakpoint: 580 })

  // Given a viewport width of 960px
  onMounted(() => {
    console.log(mobile.value) // false
  })
</script>

If you supply a value for the name argument, utilize the displayClasses property to apply the appropriate classes to your component. In the next example, the following classes would be applied to the root element of the component:

Component.vue
<template>
  <div
    :class="[
      'v-component',
      displayClasses,
    ]"
  >
    <!-- v-component--mobile -->
  </div>
</template>

<script setup>
  import { defineName } from 'vue'
  import { useDisplay } from 'vuetify'

  const { displayClasses } = useDisplay({ mobileBreakpoint }, 'v-component')
</script>

If you leave out the name argument, displayClasses will use the default name set by Vue. The following example uses the default name of the local component:

AppDrawer.vue
<template>
  <v-navigation-drawer
    :class="[
      displayClasses, // 'app-drawer--mobile'
    ]"
  >
    ...
  </v-navigation-drawer>
</template>

<script setup>
  import { useDisplay } from 'vuetify'

  const { displayClasses } = useDisplay({ mobileBreakpoint })
</script>

Ready for more?

Continue your learning with related content selected by the Team or move between pages by using the navigation links below.