init: Initialize the basic project.
This commit is contained in:
20
nl-vue/src/views/auth/monitor/index.vue
Normal file
20
nl-vue/src/views/auth/monitor/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user