2021-09-09 18:40:38 +08:00
|
|
|
<template>
|
2022-01-07 18:51:06 +08:00
|
|
|
<n-space :vertical="true" :size="16">
|
|
|
|
<workbench-header />
|
|
|
|
<workbench-main />
|
|
|
|
</n-space>
|
2021-09-09 18:40:38 +08:00
|
|
|
</template>
|
2022-01-07 18:51:06 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { WorkbenchHeader, WorkbenchMain } from './components';
|
|
|
|
</script>
|
2021-09-09 18:40:38 +08:00
|
|
|
<style scoped></style>
|