Skip to content

二维码组件

集成和使用QRView组件。

效果预览

ESQRCodeViewComponent

集成

  • package.json引入库
点击查看源码
js
"@extscreen/es-core": "^x.x.x"
  • main-native.js注册组件
点击查看源码
js
import {
    ESQRCodeViewComponent,
} from "@extscreen/es-core";

Vue.use(ESQRCodeViewComponent)

使用初探

示例代码

点击查看源码
vue

<template>
  <qr-view
      style="width:200px; height:200px;"
      content="http://www.xxxx.com/"
      :optimize="true"/>
</template>