Files
vpUni/.svn/pristine/67/67111dc834050282970b4d13bb5d52b03afc0669.svn-base
2026-03-09 16:39:03 +08:00

21 lines
382 B
Plaintext

<template>
<view>
<view class="" style="display: flex; align-items: center; justify-content: center; margin-top: 20rpx;">
<u-barcode value="1234567890" :width="300" :height="100" />
</view>
</view>
</template>
<script setup lang="ts">
import { onShow, onLoad } from "@dcloudio/uni-app";
onLoad(() => {
});
onShow(() => {
});
</script>
<style lang="scss">
</style>