fxyk-image.vue 233 B

1234567891011121314151617
  1. <template>
  2. <u-image width="100%" height="300rpx" :src="imagePath" :fade="false"></u-image>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. imagePath: {
  8. type: String,
  9. defalut: ''
  10. }
  11. }
  12. }
  13. </script>
  14. <style>
  15. </style>