21 lines
554 B
Vue
21 lines
554 B
Vue
|
<script setup>
|
||
|
import {ref} from "vue";
|
||
|
|
||
|
const blogDisplay = ref('<h2>654654654</h2><ul><li><strong>砍砍价考核表计划表</strong></li></ul><ol><li><strong>1第三方代发</strong></li><li><strong>水电费水电费sd f收到f</strong></li><li><strong>收到f sd </strong></li><li><strong>11234</strong></li></ol>')
|
||
|
</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>
|