2025-01-20 08:09:54 +00:00
|
|
|
<template>
|
|
|
|
<div class="platform">
|
|
|
|
<h2>平台首页</h2>
|
2025-01-21 03:53:24 +00:00
|
|
|
|
|
|
|
<custom-echart-bar height="50vh" :option="{ title: { text: '销售额排行', left: 'center' } }" />
|
2025-01-20 08:09:54 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
import { reactive } from 'vue';
|
|
|
|
|
|
|
|
const state = reactive({});
|
|
|
|
</script>
|