@leanup/cli-vanilla
Version:
This package contains the VanillaJS extension for the @leanup/cli.
10 lines (7 loc) • 310 B
text/typescript
import './components/app/component.vanilla';
import { run } from './app.run';
run('Vanilla', null, () => {
const htmlDivElement: HTMLDivElement | null = document.querySelector('div#vanilla');
const appElement: HTMLElement = document.createElement('wc-app');
htmlDivElement.appendChild(appElement);
});