| 1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="grid">
- <img v-for="img in images" width=70% :src="img">
- </div>
- </template>
- <style scoped>
- .grid {
- align : center ;
- display : flex ;
- flex-direction : row ;
- flex-wrap: wrap ;
- }
- </style>
- <script>
- export default {
- props : {
- images : Array
- } ,
- mounted : function() {
- console.log ( { images : this.images } ) ;
- }
- };
- </script>
|