mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-23 20:06:37 +08:00
13 lines
244 B
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>
|