index.vue 339 B

12345678910111213141516171819
  1. <!-- 我的-购物车 -->
  2. <template>
  3. <div>
  4. <cart
  5. :showNavbar="false"
  6. :defaultWidth="false"
  7. :showOrder="false"
  8. :elevation="0"
  9. ></cart>
  10. </div>
  11. </template>
  12. <script setup>
  13. defineOptions({name: 'mall-user-cart'})
  14. import cart from '@/views/mall/cart/index.vue'
  15. </script>
  16. <style lang="scss" scoped>
  17. </style>