2023-09-11 07:14:56 +00:00

16 lines
261 B
Vue

<script>
import {h, compile} from 'vue';
export default {
name: 'RenderHtml',
props: ['template'],
render() {
if (!this.template) {
return h('div', 'loading...');
} else {
return h(compile(`${this.template}`));
}
}
};
</script>