🐛 fixes routing
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { LitElement, html } from "lit";
|
||||
import { property, customElement } from "lit/decorators.js";
|
||||
import { styles } from "./index.css.js";
|
||||
|
||||
@customElement("app-episode")
|
||||
export class AppEpisode extends LitElement {
|
||||
static override styles = styles;
|
||||
@property({ type: String }) override id = "";
|
||||
override render() {
|
||||
return html`
|
||||
Episode ${this.id}
|
||||
`;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user