cyber/src/pages/Test_page.vue

26 lines
390 B
Vue
Raw Normal View History

2025-03-07 18:26:36 +08:00
<script setup>
2025-03-08 21:24:14 +08:00
import {onMounted, ref} from "vue";
import {blogImage} from "../utils/imageResource.js";
2025-03-07 18:26:36 +08:00
2025-03-08 21:24:14 +08:00
const blogDisplay = ref(null);
onMounted(() => {
})
2025-03-07 18:26:36 +08:00
</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>