选煤厂生产管理平台前端代码
houzhongjian
2024-11-22 82c159b99ca114bc8189e681bde3b4491a81af1c
提交 | 用户 | 时间
82c159 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>