coverImage.vue 385 B

1234567891011121314151617
  1. <template>
  2. <div :style="`background-image:url(${src});height:${height}px;width:${width}px`" class="coverImage"></div>
  3. </template>
  4. <script>
  5. export default {
  6. props: ['src', 'width', 'height']
  7. }
  8. </script>
  9. <style scoped>
  10. .coverImage {
  11. background-position: center center;
  12. background-repeat: no-repeat;
  13. background-size: cover;
  14. }
  15. </style>