Delivery.vue 558 B

1234567891011121314151617181920212223242526272829
  1. <template lang="pug">
  2. .pos-step
  3. .sale-selector-step
  4. .sale-selector
  5. searcher
  6. card-grid
  7. </template>
  8. <script>
  9. import { Searcher, CardGrid } from '../common'
  10. export default {
  11. components: {
  12. Searcher,
  13. CardGrid
  14. }
  15. }
  16. </script>
  17. <style lang="sass">
  18. .pos-step
  19. .sale-selector-step
  20. width: 100%
  21. height: 100%
  22. display: flex
  23. .sale-selector
  24. width: 100%
  25. height: 100%
  26. </style>