soybean-admin/src/views/website/index.vue

13 lines
244 B
Vue

<template>
<div>
<website-header />
<n-space :vertical="true"></n-space>
</div>
</template>
<script setup lang="ts">
import { NSpace } from 'naive-ui';
import { WebsiteHeader } from './components';
</script>
<style scoped></style>