1. qrcode-of-this-site2
vue component to show qrcode of this site
qrcode-of-this-site2
Package: qrcode-of-this-site2
Last modified: Wed, 01 Mar 2023 11:37:37 GMT
Version: 1.1.0
License: MIT
Downloads: 9

Install

npm install qrcode-of-this-site2
yarn add qrcode-of-this-site2

QRcode of this site

Vue2 & Vuetify2 components to show the qrcode of this site. The successor of the original qrcode-of-this-site for Vue2 & Vuetify2.

Initially, I was trying to continue development by separating branches for Vue2 and Vue3, but I gave it up on the difficulty of having to remake node_modules that are not under git control each time I switched branches, and decided to separate the repositories.

Install

yarn add qrcode-of-this-site2
#or
npm install qrcode-of-this-site2

How to use

Import QRcode, then put on your Vue template as follows:

<template>
  <QRcode/>
<template>

<script>
import {QRcode} from 'qrcode-of-this-site'
export default {
  components: {QRcode},
}
</script>

A sample of usage in the demo site code is here.

Demo

Demo site is available at here.
You can see QR code of that site in the top of the navigation drawer.

Q&A

Github issues are available. Any questions, suggestions, reports are welcome!

Author

Dr. Takeyuki UEDA

History

  • 1.0.0 2023.02.20 forked from qrcode-of-this-site

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin