Files
shanghaiganxiangtuzhuangwor…/pages/demo/demo.vue

21 lines
286 B
Vue
Raw Normal View History

2024-03-15 17:56:22 +08:00
<template>
<view class="content">
<packageCard></packageCard>
</view>
</template>
<script>
import packageCard from '@/components/package-card/package-card.vue'
export default {
components: {
packageCard
},
data() {
return {};
},
methods: {}
};
</script>
<style></style>