增加logpage
This commit is contained in:
parent
665e27cd41
commit
508098f2dc
@ -46,8 +46,8 @@
|
||||
<v-chip close>{{ currentView }}</v-chip>
|
||||
<v-container fluid="true" class="custom-border" >
|
||||
<!-- 控制界面 -->
|
||||
<div v-if="currentView === 'pageSeatCtrl'" >
|
||||
<v-card>{{ currentView }}</v-card>
|
||||
<div v-if="currentView === 'pageSeatCtrl'" style="height: 100%;">
|
||||
<ShowPage />
|
||||
</div>
|
||||
<!-- 报文界面 -->
|
||||
<div v-if="currentView === 'pageCANMsg'" >
|
||||
@ -74,7 +74,7 @@
|
||||
</div>
|
||||
<!-- 日志界面 -->
|
||||
<div v-if="currentView === 'pageLog'" >
|
||||
<v-card>{{ currentView }}</v-card>
|
||||
<LogPage />
|
||||
</div>
|
||||
</v-container>
|
||||
</v-main>
|
||||
@ -84,6 +84,7 @@
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import LogPage from './components/LogPage.vue';
|
||||
|
||||
// 使用 ref 定义响应式数据
|
||||
let drawer = ref(true);
|
||||
|
4
src/components/LogPage.vue
Normal file
4
src/components/LogPage.vue
Normal file
@ -0,0 +1,4 @@
|
||||
<template>
|
||||
<!-- 日志显示界面 -->
|
||||
|
||||
</template>
|
Loading…
x
Reference in New Issue
Block a user