17 lines
407 B
Vue
17 lines
407 B
Vue
<template>
|
|
<n-collapse-item name="FieldDataPanel" title="场数据">
|
|
<StressDisplayPanel/>
|
|
<StrainDisplayPanel/>
|
|
<TemperatureDisplayPanel/>
|
|
</n-collapse-item>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {NCollapseItem} from 'naive-ui';
|
|
import {StrainDisplayPanel, StressDisplayPanel, TemperatureDisplayPanel} from "@/disasterFormationPanel/TunnelScene";
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|