21 lines
382 B
Plaintext
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> |