27 lines
442 B
Vue
27 lines
442 B
Vue
<template>
|
|
<view class="df jcc" style="padding-top: 100px;">
|
|
<qrcode v-if="value" :value="value" :size="200"/>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import qrcode from '/src/uni_modules/lime-qrcode/components/l-qrcode/l-qrcode.vue'
|
|
export default {
|
|
components: {
|
|
qrcode
|
|
},
|
|
data() {
|
|
return {
|
|
value: ''
|
|
}
|
|
},
|
|
onLoad(option) {
|
|
this.value = option.id
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|