🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

vue3-mobile-detection

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue3-mobile-detection

Mobile browser detection for Vue.js 3

1.0.5
latest
Source
npm
Version published
Weekly downloads
454
0.44%
Maintainers
1
Weekly downloads
 
Created
Source

This package adds mobile detection in vue.js 3 projects.

Installation:

npm i vue3-mobile-detection

<OR>

yarn add vue3-mobile-detection
// MyComponent.vue
<template>
  <div id="app">
    <!-- Use in template -->
    <div v-if="$isMobile()">MOBILE</div>
    <div v-else>DESKTOP OR TABLET</div>
  </div>
</template>

<script>
import { useMobileDetection } from "vue3-mobile-detection";

export default defineComponent({
  setup() {
    const { isMobile } = useMobileDetection();
    return { isMobile };
  }
});
</script>

Legacy - usage as plugin

Usage - plugin installation:

import Vue3MobileDetection from "vue3-mobile-detection";
import { createApp } from "vue";

let app = createApp(App);
app.use(Vue3MobileDetection);

Usage - in component:

<template>
  <div id="app">
    <!-- Use in template -->
    <div v-if="$isMobile()">MOBILE</div>
    <div v-else>DESKTOP OR TABLET</div>
  </div>
</template>

<script>
export default {
  created() {
    // Use in js
    console.log(this.$isMobile());
  }
};
</script>

Keywords

vue

FAQs

Package last updated on 13 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts