mirror of
https://github.com/RhenCloud/Cloud-Home.git
synced 2026-01-22 17:39:07 +08:00
18 lines
307 B
Vue
18 lines
307 B
Vue
<template>
|
|
<main class="page">
|
|
<SitesSection :sites="sites" />
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
import SitesSection from "~/components/SitesSection.vue";
|
|
import siteConfig from "~/config/siteConfig";
|
|
|
|
const sites = siteConfig.sites;
|
|
|
|
definePageMeta({
|
|
order: 2,
|
|
label: "网站",
|
|
});
|
|
</script>
|