diff --git a/frontend/src/pages/admin/index.vue b/frontend/src/pages/admin/index.vue index 237e648..752cf99 100644 --- a/frontend/src/pages/admin/index.vue +++ b/frontend/src/pages/admin/index.vue @@ -236,7 +236,7 @@ async function initMapChart() { return try { - const [{ default: echarts }, worldResponse] = await Promise.all([ + const [echarts, worldResponse] = await Promise.all([ import('echarts'), fetch('/world.json'), ])