Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <template>
  2. <div class="diagram">
  3. <block v-for="block in blocks"
  4. :object="block"></block>
  5. </div>
  6. </template>
  7.  
  8. <style lang="scss">
  9.  
  10. </style>
  11.  
  12. <script>
  13. import Block from './Block.vue'
  14.  
  15. export default {
  16. name: 'diagram',
  17. props: ['blocks'],
  18. components: {
  19. Block
  20. }
  21. }
  22. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement