jcloud/dashboard/src2/components/devtools/database/DatabasePerformanceSchemaDisabledNotice.vue
2025-04-12 17:39:38 +08:00

19 lines
465 B
Vue

<template>
<div class="flex h-60 flex-col items-center justify-center gap-1">
<p class="text-base text-gray-700">
数据库服务器上未启用性能模式
</p>
<p class="text-base text-gray-700">
请联系
<a href="https://support.jingrow.com/" target="_blank" class="underline"
>支持</a
>
以启用它
</p>
</div>
</template>
<script>
export default {
name: 'DatabasePerformanceSchemaDisabledNotice'
};
</script>