dezhou-screen/src/views/MainArea.vue

43 lines
853 B
Vue
Raw Normal View History

2023-09-08 13:47:46 +08:00
<!--
filename: MainArea.vue
author: liubin
date: 2023-09-08 13:23:03
description:
-->
<template>
<div class="main-area">
2023-09-08 16:28:25 +08:00
<PressInfo />
2023-09-08 16:35:41 +08:00
<BaseInfo />
<RuntimeInfo />
2023-09-08 13:47:46 +08:00
</div>
</template>
<script>
2023-09-08 16:28:25 +08:00
import BaseInfo from "@/components/yx-dark/widget/baseInfo/index.vue";
import PressInfo from "@/components/yx-dark/widget/pressInfo/index.vue";
2023-09-08 16:35:41 +08:00
import RuntimeInfo from "@/components/yx-dark/widget/runtimeInfo/index.vue";
2023-09-08 13:47:46 +08:00
export default {
name: "MainArea",
2023-09-08 16:35:41 +08:00
components: { BaseInfo, PressInfo, RuntimeInfo },
2023-09-08 13:47:46 +08:00
props: {},
data() {
return {};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.main-area {
position: relative;
2023-09-08 16:35:41 +08:00
background: url("../assets/main-area-bg.png") 40% 98% / 97% no-repeat;
display: flex;
justify-content: center;
gap: 240px;
padding-top: 96px;
2023-09-08 13:47:46 +08:00
}
</style>