
Security News
Researcher Exposes Zero-Day Clickjacking Vulnerabilities in Major Password Managers
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
vue3-scan-qr
Advanced tools
Javascript QR Code Scanner based on [Cosmo Wolfe's javascript port](https://github.com/cozmo/jsqr) and [Vue3](https://github.com/vuejs/core).
Javascript QR Code Scanner based on Cosmo Wolfe's javascript port and Vue3.
To install via npm:
npm install --save vue3-scan-qr
To install via yarn:
yarn add vue3-scan-qr
main.js
import VScan from "vue3-scan-qr";
import "../node_modules/vue3-scan-qr/dist/style.css";
createApp(App).use(VScan).mount("#app");
app.vue
<script setup>
import { ref } from "vue";
const showScan = ref(false);
function output(code) {
console.log(code);
showScan.value = false;
}
function errorCatch(error) {
console.log(error);
}
</script>
<template>
<div>
<button @click="showScan = true">Scan</button>
<v-scan
v-model:visible="showScan"
@scanned="output"
@error-catch="errorCatch"
:head-tip="Tip messages"
></v-scan>
</div>
</template>
visible
- Booleanscanned
- Function(code), code is the QR code scannederror-catch
- Function(error)head-tip
- StringFAQs
Javascript QR Code Scanner based on [Cosmo Wolfe's javascript port](https://github.com/cozmo/jsqr) and [Vue3](https://github.com/vuejs/core).
We found that vue3-scan-qr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.