26 lines
568 B
Vue
26 lines
568 B
Vue
<template>
|
|
<tiny-qr-code v-bind="params"></tiny-qr-code>
|
|
</template>
|
|
|
|
<script>
|
|
import { QrCode } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyQrCode: QrCode
|
|
},
|
|
data() {
|
|
return {
|
|
params: {
|
|
value: '测试二维码数据',
|
|
icon: import.meta.env.VITE_APP_BUILD_BASE_URL
|
|
? `${import.meta.env.VITE_APP_BUILD_BASE_URL}static/images/mountain.png`
|
|
: 'https://res.hc-cdn.com/tinyui-design-common/1.0.5.20230707170109/assets/tinyvue.svg',
|
|
iconSize: 60,
|
|
size: 250
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|