feat:初始化工程

This commit is contained in:
2025-09-17 15:16:50 +08:00
commit 1a5595b5e8
68 changed files with 10837 additions and 0 deletions

23
src/layout/index.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<section class="blog-container" id="blog-container">
<tools />
<sidebar />
<section>
<router-view/>
<footer-bar />
</section>
</section>
</template>
<script setup lang="ts">
import Tools from '@/layout/components/Tools/index.vue'
import Sidebar from '@/layout/components/Sidebar/index.vue'
import FooterBar from '@/layout/components/FooterBar/index.vue'
</script>
<style lang="scss">
@use "@/styles/blog/blog.module.scss";
</style>