This module injects flags that indicate a device type into the context and the component instance.
- Add
@nuxtjs/device
to depedency using yarn or npm to your project - Add
@nuxtjs/device
to modules section of nuxt.config.js
{
modules: [
'@nuxtjs/device',
]
}
defaultUserAgent
option can be used for npm run generate
.
{
modules: [
[
'@nuxtjs/device',
{defaultUserAgent: 'Mozilla/5.0 (Linux; Android 5.1.1; Nexus 6 Build/LYZ28E) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Mobile Safari/537.36'}
]
]
}
You can use these flags to detect the device type.
context.isDesktop
context.isMobile
context.isTablet
context.isMobileOrTablet
context.isDesktopOrTablet
context.isIos
context.isWindows
context.isMacOS
context.isAndroid
instance.$device.isDesktop
instance.$device.isMobile
instance.$device.isTablet
instance.$device.isMobileOrTablet
instance.$device.isDesktopOrTablet
instance.$device.isIos
instance.$device.isWindows
instance.$device.isMacOS
instance.$device.isAndroid
If a user-agent is 'Amazon CloudFront', this module checks the both headers 'CloudFront-Is-Mobile-Viewer' and 'CloudFront-Is-Tablet-Viewer'.
Here are the details about the headers: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/header-caching.html#header-caching-web-device
isIos
, isWindows
and isMacOS
flags are not available with CloudFront.
This module checks the header 'CF-Device-Type'.
Here are the details about the header: https://support.cloudflare.com/hc/en-us/articles/229373388-Cache-Content-by-Device-Type-Mobile-Tablet-Desktop-
<template>
<section>
<div v-if="$device.isDesktop">
Desktop
</div>
<div v-else-if="$device.isTablet">
Tablet
</div>
<div v-else>
Mobile
</div>
</section>
</template>
Ofcourse, you can use $device
via this
in a script.
export default {
layout: (ctx) => ctx.isMobile ? 'mobile' : 'default'
}