13 lines
192 B
Vue
13 lines
192 B
Vue
|
<template>
|
||
|
<foreignObject>
|
||
|
<div class="htmlEmbed" v-html="html"> </div>
|
||
|
</foreignObject>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'HTMLEmbed',
|
||
|
props: ['html'],
|
||
|
}
|
||
|
</script>
|