SotM_Playfield/src/HTMLEmbed.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>