index.vue 492 B

12345678910111213141516
  1. <template>
  2. <doc-alert title="【统计】会员、商品、交易统计" url="https://doc.iocoder.cn/mall/statistics/" />
  3. <!-- 商品概览 -->
  4. <ProductSummary />
  5. <!-- 商品排行 -->
  6. <ProductRank class="mt-16px" />
  7. </template>
  8. <script lang="ts" setup>
  9. import ProductSummary from './components/ProductSummary.vue'
  10. import ProductRank from './components/ProductRank.vue'
  11. /** 商品统计 */
  12. defineOptions({ name: 'ProductStatistics' })
  13. </script>
  14. <style lang="scss" scoped></style>