13 lines
275 B
Vue
Raw Normal View History

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