mirror of
https://github.com/RhenCloud/Cloud-Home.git
synced 2026-01-23 02:09:06 +08:00
18 lines
328 B
Vue
18 lines
328 B
Vue
<template>
|
|
<main class="page">
|
|
<ProjectsSection :projects="projects" />
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
import ProjectsSection from "~/components/ProjectsSection.vue";
|
|
import siteConfig from "~/config/siteConfig";
|
|
|
|
const projects = siteConfig.projects;
|
|
|
|
definePageMeta({
|
|
order: 3,
|
|
label: "项目",
|
|
});
|
|
</script>
|