1234567891011121314151617181920212223242526272829 |
- <template lang="pug">
- .pos-step
- .sale-selector-step
- .sale-selector
- searcher
- card-grid
- </template>
- <script>
- import { Searcher, CardGrid } from '../common'
- export default {
- components: {
- Searcher,
- CardGrid
- }
- }
- </script>
- <style lang="sass">
- .pos-step
- .sale-selector-step
- width: 100%
- height: 100%
- display: flex
- .sale-selector
- width: 100%
- height: 100%
- </style>
|