DeliveryConfirm.vue 706 B

1234567891011121314151617181920212223242526272829303132
  1. <template lang="pug">
  2. .pos-step
  3. .delivery-confirm-step
  4. card-grid(
  5. imageKey='product.image'
  6. :items='selectedMoveLines'
  7. :headerKeys="['product.name']"
  8. :footerKeys="['quantity']"
  9. )
  10. </template>
  11. <script>
  12. import { mapGetters, mapActions } from 'vuex'
  13. import { CardGrid } from '../common'
  14. export default {
  15. components: {
  16. CardGrid
  17. },
  18. computed: mapGetters([
  19. 'selectedMoveLines'
  20. ])
  21. }
  22. </script>
  23. <style lang="sass">
  24. .pos-step
  25. .delivery-confirm-step
  26. width: 100%
  27. height: 100%
  28. display: flex
  29. </style>