ruoyi-plus-soybean/src/views/dashboard/workbench/index.vue

12 lines
280 B
Vue
Raw Normal View History

<template>
2021-10-25 11:56:17 +08:00
<n-space :vertical="true" :size="16">
<workbench-header />
<workbench-main />
2021-10-25 11:56:17 +08:00
</n-space>
</template>
2021-09-11 02:34:36 +08:00
<script lang="ts" setup>
import { NSpace } from 'naive-ui';
import { WorkbenchHeader, WorkbenchMain } from './components';
2021-09-11 02:34:36 +08:00
</script>
<style scoped></style>