You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vue3-upc-barcode-generator

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue3-upc-barcode-generator

generate a UPC barcode using vue3

1.0.11
latest
npmnpm
Version published
Maintainers
1
Created
Source

screenshot

Install:

npm i vue3-upc-barcode-generator

Example:

<template>

    <Upc @upc-barcode-created="upcBarcodeCreated"></Upc>

</template>

<script>

    import Upc from '@/Components/Upc'

    export default {
        components: {

            Upc

        },
        setup() {

            function upcBarcodeCreated(image) {

                console.log(image)//the barcode data URL is returned here if you need it

            }

            return { upcBarcodeCreated }

        }
    }
</script>

Keywords

vue3

FAQs

Package last updated on 27 May 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