18 lines
270 B
Vue
18 lines
270 B
Vue
<template>
|
|
<view class="order_info">
|
|
<OrderItem></OrderItem>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import OrderItem from "./components/OrderItem.vue";
|
|
export default {
|
|
components: {
|
|
OrderItem,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |