useQRCode 
qrcode 的封装。
Demo 
Available in the @vueuse/integrations add-on.安装 
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 { shallowRef } from 'vue'
const text = shallowRef('text-to-encode')
const qrcode = useQRCode(text)html
<input v-model="text" type="text" />
<img :src="qrcode" alt="QR Code" />Type Declarations 
typescript
/**
 * 响应式 qrcode 包装器
 *
 * @see https://vueuse.org/useQRCode
 * @param text
 * @param options
 */
export declare function useQRCode(
  text: MaybeRefOrGetter<string>,
  options?: QRCode.QRCodeToDataURLOptions,
): ShallowRef<string, string>