You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr-web/src/views/worksheet/index.vue

30 lines
540 B

<script lang="ts" setup>
import DataHeader from '@/components/DataHeader/index.vue';
import Aside from './aside/Aside.vue';
import Content from './content/Content.vue';
</script>
<template>
<div style="width: 100%;">
<div class="header">
<DataHeader v-show="false"/>
</div>
<div class="main">
<!-- -->
<Aside />
<!-- 内容 -->
<Content />
</div>
</div>
</template>
<style lang="less" scoped>
.main {
display: flex;
flex-direction: row;
box-sizing: border-box;
width: 100%;
}
</style>