yudao-dev/src/views/databoard/kiln/RightTwo.vue

38 lines
864 B
Vue
Raw Normal View History

2023-12-06 10:38:56 +08:00
<!--
filename: RightTwo.vue
author: liubin
date: 2023-12-06 10:19:00
description:
-->
<template>
<div
class="right-two"
style="display: flex; gap: 16px; flex-direction: column">
2023-12-11 09:11:51 +08:00
<KilnInfo />
<GasHandle />
2023-12-06 10:38:56 +08:00
</div>
</template>
<script>
import Container from '../components/Container.vue';
import ShadowRect from '../components/ShadowRect.vue';
import KilnLine from '../components/line';
import Switcher from '../components/Switcher.vue';
import SelectorBtnGroup from '../components/SelectorBtnGroup.vue';
2023-12-11 09:11:51 +08:00
import KilnInfo from './KilnInfo.vue';
import GasHandle from './GasHandle.vue';
2023-12-06 10:38:56 +08:00
export default {
name: 'RightTwo',
2023-12-11 09:11:51 +08:00
components: { Container, Switcher, SelectorBtnGroup, KilnLine, ShadowRect, KilnInfo, GasHandle },
2023-12-06 10:38:56 +08:00
props: {},
data() {
return {};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss"></style>