SotM_Playfield/src/HTMLEmbed.vue

13 lines
192 B
Vue
Raw Normal View History

2019-01-09 23:23:20 -05:00
<template>
<foreignObject>
<div class="htmlEmbed" v-html="html"> </div>
</foreignObject>
</template>
<script>
export default {
name: 'HTMLEmbed',
props: ['html'],
}
</script>