16 lines
166 B
Vue
16 lines
166 B
Vue
<template>
|
|
|
|
<view> 快递列表页面 </view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|