39 lines
516 B
Vue
39 lines
516 B
Vue
<template>
|
|
<view>
|
|
<!-- 状态栏 -->
|
|
<status-nav
|
|
:ifTitle="true"
|
|
:ifReturn="true"
|
|
:ifCenter="true"
|
|
:navBarTitle="'购物车'"
|
|
:fromWhere="1"></status-nav>
|
|
<!-- 容器 -->
|
|
<container-subgroup>
|
|
<view slot="content">
|
|
<cart></cart>
|
|
</view>
|
|
</container-subgroup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import cart from '@/components/cart-subgroup/cart.vue';
|
|
export default {
|
|
components:{
|
|
cart
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|