123456789101112131415161718192021222324252627 |
- <template lang="pug">
- .cart-container
- cart-total
- cart-items
- </template>
- <script>
- import CartTotal from '@/components/cart/CartTotal'
- import CartItems from '@/components/cart/CartItems'
- export default {
- components: {
- CartTotal,
- CartItems
- }
- }
- </script>
- <style lang="sass">
- .cart-container
- width: 300px
- height: 100%
- border-left: 1px solid #d3d3d3
- padding-left: 10px
- display: inline-block
- vertical-align: top
- </style>
|