Just moved over to Angular 2 recently and i am just trying to get my head around pretty much all of it.
I need to build and that just uses stand-alone components, I want to be able to utilise my components as follows.
<body>
<component-one></component-one>
<component-two></component-two>
</body>
I have got as far as getting these components to render out on the page the problem is when one of these component selectors are not present on the current page i get the following console error...
core.umd.js:2838 EXCEPTION: Error in :0:0 caused by: The selector "component-one" did not match any elements
Is there a way to only bootstrap only the relevant components?
Also, the "Angular 2 is running in the development mode. Call enableProdMode() to enable the production mode." console message comes in multiples times depending on how many components i have on the page, which makes me feel like i am missing something.
Module config
// Modules
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
// Components
import { ComponentOne } from './components/componentOne';
import { ComponentTwo } from './components/componentTwo';
@NgModule({
imports: [ BrowserModule ],
declarations: [ ComponentOne, ComponentTwo ],
bootstrap: [ ComponentOne, ComponentTwo],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class AppModule {
constructor() {
}
}
You can omit the bootstrap option and implementing
ngDoBootstrap()
yourself. And to conditionally bootstrap components, just do aquerySelector
before callingappRef.bootstrap(SomeComponent);
to check whether the component is already on the page.Note:
entryComponents
option is requiredFinally in your index.html you can omit second tag and angular won't raise error:
Plunker Example
If you don't want to see message
Angular 2 is running in the development mode. Call enableProdMode() to enable the production mode.
you can just enable prod mode or use the following (Since 2.3.0) which is similar as above (i recommend to use the first solution):It's just the same that angular does internally when bootstraping component
Plunker Example
See also