|
<template>
|
|
<div v-html="content">
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
content:{
|
|
type:String,
|
|
default: ""
|
|
}
|
|
})
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
:deep(svg){
|
|
width:100%;
|
|
height:100%;
|
|
vertical-align: middle;
|
|
overflow: hidden;
|
|
object-fit: contain;
|
|
}
|
|
</style> |