I'm new to angular
in general and to angular2
specifically. I'm trying to write a container component, which should have child components in it.
For example, container component:
@Component({
selector: 'my-list',
template: `
<ul>
<ng-content></ng-content>
</ul>
`
})
export class MyList {
}
Child component:
import { Component } from 'angular2/core'
@Component({
selector: 'my-item',
template: `
<li>
<ng-content></ng-content>
</li>
`
})
export class MyItem {
}
I'd like to make this structure:
<my-list>
<my-item>One</my-item>
<my-item>Two</my-item>
</my-list>
To be rendered to the following one:
<my-list>
<ul>
<li>One</li>
<li>Two</li>
</ul>
</my-list>
But instead, I have the host element of the container and the items preserved as well:
<my-list>
<ul>
<my-item>
<li>One</li>
</my-item>
<my-item>
<li>Two</li>
</my-item>
</ul>
</my-list>
Question: is there a way to eliminate the host elements and to leave only the rendered template?
my-list
andmy-item
by direct usage oful
andli
. This is pointless. I meantmy-list
andmy-item
to be the components, which render themselves toul
andli
accordingly. Of course, this is just a very simplified example. The real case is much more complex, but the main point is still the same: to eliminate (replace) host elements – Blowgun