Allowed multiple children to be specified in router link constructor. Adjusted styling to display flex and center.

This commit is contained in:
Matt Mo 2020-10-28 10:03:28 -07:00
parent 1dc47834e5
commit af88f24a29

View File

@ -19,6 +19,17 @@ class RouterLink extends IgniteElement {
};
}
get styles() {
return `
router-link {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
`;
}
render() {
return this.template
.onClick((event) => this.onClick(event))
@ -185,16 +196,16 @@ class RouteMatcher {
window.RouteMatcher = RouteMatcher;
class RouterLinkTemplate extends IgniteTemplate {
constructor(route, element) {
super("router-link", [element]);
constructor(route, ...elements) {
super("router-link", elements);
this.property("route", route);
}
}
class RouterViewTemplate extends IgniteTemplate {
constructor(route, element) {
super("router-view", [element]);
constructor(route, ...elements) {
super("router-view", elements);
this.property("route", route);
}