vPlaceImg.vue 167 B

123456789
  1. <template>
  2. <img :src="`http://iph.href.lu/${width}x${height}`"/>
  3. </template>
  4. <script>
  5. export default {
  6. name:'PlaceImg',
  7. props:['width','height']
  8. }
  9. </script>