Appearance
二维码组件
集成和使用QRView
组件。
效果预览
集成
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>