Cart.vue 773 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div id="cart">
  3. <div class="loading" v-if="!false">
  4. <span>Loading ...</span>
  5. </div>
  6. <div class="">
  7. This the cart
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. // import Showroom from 'vuejs/components/Content/Showroom'
  13. // import { mapState, mapActions } from 'vuex'
  14. export default {
  15. name: "cart",
  16. // data() {
  17. // return {
  18. // items:[],
  19. // page:0
  20. // }
  21. // },
  22. // computed: {
  23. // ...mapState({
  24. // items: state => state.Showrooms.items
  25. // })
  26. // },
  27. created(){
  28. // if(!this.items.length)
  29. // this.getItems()
  30. },
  31. methods: {
  32. // ...mapActions({
  33. // getItems: 'Showrooms/getItems'
  34. // })
  35. },
  36. // components: {
  37. // Showroom
  38. // }
  39. }
  40. </script>
  41. <style lang="scss" scoped>
  42. </style>