24 lines
260 B
Vue
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>
|