cxc-szcx-uniapp/pages/tab/product.vue

18 lines
245 B
Vue
Raw Normal View History

2024-09-14 02:26:50 +00:00
<template>
2025-03-03 10:14:17 +00:00
<view>
<product-data></product-data>
2024-09-14 02:26:50 +00:00
</view>
</template>
<script setup>
2025-03-03 10:14:17 +00:00
import productData from "@/pages/product/index.vue"
2024-09-14 02:26:50 +00:00
</script>
<style>
page {
background-color: #F8F8F8;
}
</style>
<style lang="scss" scoped>
</style>