18 lines
338 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="geo-dashboard">
<el-card>
<el-empty description="账号环境总览账号矩阵、IP 池、登录态与运行趋势)" />
</el-card>
</div>
</template>
<script lang="ts" setup>
defineOptions({ name: 'geo-dashboard' });
</script>
<style lang="scss" scoped>
.geo-dashboard {
padding: 16px;
}
</style>