41 lines
818 B
Vue
41 lines
818 B
Vue
<!--
|
|
filename: RightTwo.vue
|
|
author: liubin
|
|
date: 2023-12-06 10:19:00
|
|
description:
|
|
-->
|
|
|
|
<template>
|
|
<div
|
|
class="right-two"
|
|
style="
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-rows: 320px 605px;
|
|
">
|
|
<KilnInfo />
|
|
<GasHandle />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Container from '../components/Container';
|
|
import ShadowRect from '../components/ShadowRect.vue';
|
|
import KilnLine from '../components/line';
|
|
import SelectorBtnGroup from '../components/SelectorBtnGroup';
|
|
import KilnInfo from './KilnInfo.vue';
|
|
import GasHandle from './GasHandle.vue';
|
|
export default {
|
|
name: 'RightTwo',
|
|
components: { Container, SelectorBtnGroup, KilnLine, ShadowRect, KilnInfo, GasHandle },
|
|
props: {},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|