Avatar.nvue 289 B

12345678910111213141516171819
  1. <template>
  2. <view class="chat-avatar">
  3. <image :src="src" style="width: 90rpx;height: 90rpx; border-radius: 10rpx;" />
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: ['src']
  9. }
  10. </script>
  11. <style>
  12. .chat-avatar {
  13. background-color:#FFFFFF;
  14. width: 90rpx;
  15. height:90rpx;
  16. }
  17. </style>