使用 TypeScript
基于 awesome-qr.js 与 Vue3
开发的二维码组件。支持丰富的配置属性,并且支持:LOGO 、BackgroundImage 、GIF 等。简单配置,即可使用漂亮好看的二维码~
npm i vue3-next-qrcode
<script lang="ts" setup>
import { Vue3NextQrcode } from 'vue3-next-qrcode'
</script>
<template>
基础二维码
<Vue3NextQrcode text="hello" />
LOGO 二维码
<Vue3NextQrcode text="hello" logoImage="your logo image" />
BackgroundImage 二维码
<Vue3NextQrcode text="hello" backgroundImage="your logo image" />
</template>
注意:使用 GIF URL
的时候,应该使用 gifBackgroundURL
属性。
<script lang="ts" setup>
import { Vue3NextQrcode } from 'vue3-next-qrcode'
</script>
<template>
GIF URL
<Vue3NextQrcode text="hello" gifBackgroundURL="your gif url" />
GIF ArrayBuffer
<Vue3NextQrcode text="hello" gifBackground="your gif ArrayBuffer" />
</template>
如果觉得该项目对你有帮助,可以点一个小星星,或者提出你的宝贵意见~
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.