https://github.com/uedatakeyuki/qrcode-of-this-site
deprecated - vue component of showing qrcode of this site
https://github.com/uedatakeyuki/qrcode-of-this-site
Last synced: 3 months ago
JSON representation
deprecated - vue component of showing qrcode of this site
- Host: GitHub
- URL: https://github.com/uedatakeyuki/qrcode-of-this-site
- Owner: UedaTakeyuki
- Created: 2021-03-29T07:57:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-28T02:59:42.000Z (over 2 years ago)
- Last Synced: 2025-01-30T15:39:54.974Z (5 months ago)
- Language: Vue
- Homepage:
- Size: 382 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QRcode of this site
This repository is now **Deprecated**.
The successor for **Vue2** & **Vuetify2** is [qrcode-of-this-site2](https://github.com/UedaTakeyuki/qrcode-of-this-site2).
The successor for **Vue3** & **Vuetify3** is [qrcode-of-this-site3](https://github.com/UedaTakeyuki/qrcode-of-this-site3).
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-site
#or
npm install qrcode-of-this-site
```## How to use
Import **QRcode**, then put **** on your Vue template as follows:```vue:
import {QRcode} from 'qrcode-of-this-site'
export default {
components: {QRcode},
}```
A sample of usage in the demo site code is [here](https://github.com/UedaTakeyuki/vue-faui-user-fe-sample/blob/275e6752883ea11400814995c5b0830a3227f84e/src/components/Navbar.vue#L36).
## Demo
Demo site is available at [here](https://vue-faui-user-fe-sample.uedasoft.com/).
You can see QR code of that site in the top of the navigation drawer.## Q&A
Github [issues](https://github.com/UedaTakeyuki/qrcode-of-this-site/issues) are available. Any questions, suggestions, reports are welcome!## Author
[Dr. Takeyuki UEDA](https://atelierueda.uedasoft.com/)## History
- 1.0.4 2021.04.01 first version.
- 1.1.1 2021.06.23 decrease package size
- 2.0.1 2022.12.20 for Vue2
- 3.0.1 2022.12.20 for Vue3