24 lines
480 B
Vue
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>
|