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