ng-vdom icon indicating copy to clipboard operation
ng-vdom copied to clipboard

Feature: global bootstrap for browser rendering

Open trotyl opened this issue 7 years ago • 0 comments

Current

One can only mount elements in existing Angular component.

Expected

Support global bootstrap without any Angular code, like:

import { createElement, render } from 'ng-renderable'
import 'ng-renderable/browser'

render(<p>Hello World!</p>, document.querySelector('#main'))

Note: the only dependency should be @angular/core, not use @angular/platform-browser.

trotyl avatar Dec 26 '18 09:12 trotyl