1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <template>
| <div class="order-user-item">
| <cl-avatar :src="scope.avatarUrl" :size="36"></cl-avatar>
| <span>{{ scope.nickName }}</span>
| </div>
| </template>
|
| <script lang="ts" setup name="order-user-item">
| const props = defineProps({
| scope: null
| });
| </script>
|
| <style lang="scss" scoped>
| .order-user-item {
| .cl-avatar {
| margin-bottom: 5px;
| }
| }
| </style>
|
|