Files
dvcp_v2_wxcp_app/src/apps/AppIntegralExchange/myOder.vue

26 lines
266 B
Vue
Raw Normal View History

2022-11-22 19:24:52 +08:00
<template>
<div class="myOder"></div>
</template>
<script>
export default {
name: 'myOder',
data() {
return {
}
},
onShow() {
document.title = '我的订单'
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.myOder {
}
</style>