1
0

imageroll.vue 408 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="grid">
  3. <img v-for="img in images" width=70% :src="img">
  4. </div>
  5. </template>
  6. <style scoped>
  7. .grid {
  8. align : center ;
  9. display : flex ;
  10. flex-direction : row ;
  11. flex-wrap: wrap ;
  12. }
  13. </style>
  14. <script>
  15. export default {
  16. props : {
  17. images : Array
  18. } ,
  19. mounted : function() {
  20. console.log ( { images : this.images } ) ;
  21. }
  22. };
  23. </script>