houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 <template>
H 2   <el-image
3     src="https://shopro.sheepjs.com/admin/static/images/shop/decorate/walletCardStyle.png"
4   />
5 </template>
6 <script setup lang="ts">
7 import { UserWalletProperty } from './config'
8
9 /** 用户资产 */
10 defineOptions({ name: 'UserWallet' })
11 // 定义属性
12 defineProps<{ property: UserWalletProperty }>()
13 </script>
14
15 <style scoped lang="scss"></style>