
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
github.com/ajerez/vue-mobile-detection
Version 2 of this plugin only works with Vue 3. If you need Vue 2 compatibility install version 1.0.0
Vue.js global function this.$isMobile()
that returns a Boolean value depending on whether or not the user is browsing with a mobile
https://ajerez.github.io/vue-mobile-detection/
npm i vue-mobile-detection
yarn add vue-mobile-detection
import VueMobileDetection from "vue-mobile-detection";
import App from "./App.vue";
const app = createApp(App);
app.use(VueMobileDetection);
/* After the install you can use this.$isMobile() in all your vue components */
<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>
This project is licensed under the terms of the MIT license
FAQs
Unknown package
Did you know?
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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.