Files
buy-lite/wxmp/src/pages/AppCart.vue
2023-01-12 11:06:00 +08:00

24 lines
260 B
Vue

<template>
<section class="AppCart">
</section>
</template>
<script>
export default {
name: "AppCart",
appName: "购物车",
data() {
return {}
},
methods: {},
created() {
}
}
</script>
<style lang="scss" scoped>
.AppCart {
}
</style>