mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-03 02:39:02 +08:00
e97630c639
* Require .js endings * add extension alias for cypress to resolve ts files with js endings
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import 'iframe-resizer/js/iframeResizer.contentWindow'
|
|
import './style.scss'
|
|
|
|
import { debug, splitName } from './helper.js'
|
|
|
|
export default function init(name: string, source: any) {
|
|
// @ts-ignore
|
|
window.source = source
|
|
document.title = name
|
|
|
|
const [demoCategory, demoName] = splitName(name)
|
|
|
|
import(`../src/${demoCategory}/${demoName}/Svelte/index.svelte`)
|
|
.then(Module => {
|
|
const Component = Module.default
|
|
|
|
new Component({ target: document.querySelector('#app') }) // eslint-disable-line
|
|
|
|
debug()
|
|
})
|
|
}
|