This package has been deprecated

Author message:

No longer maintainted, please use @chenfengyuan/vue-qrcode

@xkeshi/vue-qrcode

1.0.0 • Public • Published

vue-qrcode

Build Status Downloads Version

Qrcode component for Vue.js, bases on QRious.

Table of contents

Main

dist/
├── vue-qrcode.js        (UMD)
├── vue-qrcode.min.js    (UMD, compressed)
├── vue-qrcode.common.js (CommonJS)
└── vue-qrcode.esm.js    (ES Module)

Getting started

Install

npm install @xkeshi/vue-qrcode vue

In browser:

<script src="/path/to/vue.js"></script>
<script src="/path/to/vue-qrcode.js"></script>

Usage

import Vue from 'vue';
import VueQrcode from '@xkeshi/vue-qrcode';

Vue.component(VueQrcode.name, VueQrcode);
<qrcode value="Hello, World!" :options="{ size: 200 }"></qrcode>

In browser:

<script>Vue.component(VueQrcode.name, VueQrcode);</script>

back to top

Props

value

  • Type: String
  • Default: ''

The value of the qrcode.

options

  • Type: Object

The options for the qrcode generator. References the QRious's options.

tag

  • Type: String
  • Default: 'canvas'
  • Options: 'canvas' and 'img'

The tag of the component root element.

Browser support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Opera (latest)
  • Edge (latest)
  • Internet Explorer 9+

Versioning

Maintained under the Semantic Versioning guidelines.

License

MIT © Xkeshi

back to top

Package Sidebar

Install

npm i @xkeshi/vue-qrcode

Weekly Downloads

967

Version

1.0.0

License

MIT

Unpacked Size

248 kB

Total Files

9

Last publish

Collaborators

  • chenfengyuan