@staszek998/v-html
Version:
Simple Vue component capable of rendering the passed-in HTML string without wrapping it within a redundant HTML tag.
12 lines (8 loc) • 311 B
text/typescript
/*******************************************************************************
* @copyright 2021 IDEALIGN Stanisław Gregor
******************************************************************************/
import Vue from 'vue'
import { App } from './App'
new Vue({
render: h => h(App)
}).$mount('#app')