Files
blog-ui/src/layout/index.vue
2025-09-17 15:16:50 +08:00

24 lines
480 B
Vue

<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>