You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
261 B

2 years ago
  1. <template><img v-lazy="src" :class="customClass" /></template>
  2. <script>
  3. export default {
  4. props: {
  5. src: {
  6. type: String,
  7. },
  8. customClass: {
  9. type: String,
  10. },
  11. },
  12. };
  13. </script>
  14. <style lang="scss" scoped>
  15. img {
  16. width: 100%;
  17. }
  18. </style>