46 lines
773 B
Vue
46 lines
773 B
Vue
<template>
|
|
<div id="cart">
|
|
<div class="loading" v-if="!false">
|
|
<span>Loading ...</span>
|
|
</div>
|
|
<div class="">
|
|
This the cart
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
// import Showroom from 'vuejs/components/Content/Showroom'
|
|
// import { mapState, mapActions } from 'vuex'
|
|
|
|
export default {
|
|
name: "cart",
|
|
// data() {
|
|
// return {
|
|
// items:[],
|
|
// page:0
|
|
// }
|
|
// },
|
|
// computed: {
|
|
// ...mapState({
|
|
// items: state => state.Showrooms.items
|
|
// })
|
|
// },
|
|
created(){
|
|
// if(!this.items.length)
|
|
// this.getItems()
|
|
},
|
|
methods: {
|
|
// ...mapActions({
|
|
// getItems: 'Showrooms/getItems'
|
|
// })
|
|
},
|
|
// components: {
|
|
// Showroom
|
|
// }
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
</style>
|