useQRCode
qrcode
的封装。
Demo
Text content for QRCode
安装
bash
npm i qrcode@^1
使用方法
ts
import { useQRCode } from '@vueuse/integrations/useQRCode'
// `qrcode` 将是一个数据 URL 的 ref
const qrcode = useQRCode('要编码的文本')
或者将一个 ref
传递给它,返回的数据 URL ref 将随着源 ref 的更改而改变。
ts
import { useQRCode } from '@vueuse/integrations/useQRCode'
import { ref } from 'vue'
const text = ref('要编码的文本')
const qrcode = useQRCode(text)
html
<input v-model="text" type="text" />
<img :src="qrcode" alt="QR Code" />
类型声明
typescript
/**
* 响应式 qrcode 包装器
*
* @see https://vueuse.org/useQRCode
* @param text
* @param options
*/
export declare function useQRCode(
text: MaybeRefOrGetter<string>,
options?: QRCode.QRCodeToDataURLOptions,
): Ref<string, string>
Source
贡献者
Anthony Fu
丶远方
Anthony Fu
Doctorwu
Curt Grimes
Okuto Oyama
Alex Kozack
Antério Vieira
变更日志
v10.0.0-beta.4
on 4/13/20234d757
- feat(types)!: rename MaybeComputedRef
to MaybeRefOrGetter
10e98
- feat(toRef)!: rename resolveRef
to toRef