init: Initialize the basic project.

This commit is contained in:
2026-01-06 09:58:29 +08:00
commit 1ab79d6f8f
1441 changed files with 129326 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<template>
<analyse />
<a-card :bordered="false" :body-style="{ 'padding-top': '10px' }">
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="1" tab="B端会话">
<monitor-b-tab />
</a-tab-pane>
<a-tab-pane key="2" tab="C端会话" force-render>
<monitor-c-tab />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script setup name="authMonitor">
import Analyse from './analyse.vue'
import MonitorBTab from './bTab.vue'
import MonitorCTab from './cTab.vue'
const activeKey = ref('1')
</script>