cyber/src/pages/blogPages/SingleBlog_page.vue

24 lines
336 B
Vue
Raw Normal View History

2025-03-08 21:24:14 +08:00
<script setup>
import {onMounted, ref} from "vue";
const blogDisplay = ref(null);
onMounted(() => {
})
</script>
<template>
<div class="container">
<div v-html="blogDisplay"></div>
</div>
</template>
<style scoped>
.container {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 100%;
}
</style>