You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
456 B
29 lines
456 B
<template>
|
|
<view class="df jcc" style="padding-top: 100px;">
|
|
<qrcode value="123" :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.item
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|
|
|