CartItem.vue 245 B

1234567891011121314151617
  1. <template lang="pug">
  2. .cart-item
  3. </template>
  4. <script>
  5. export default {
  6. }
  7. </script>
  8. <style lang="sass">
  9. .cart-item
  10. width: 100%
  11. height: 65px
  12. margin-top: 5px
  13. border: 1px solid #d3d3d3
  14. </style>