Files
t/ts/sltab.ts

9 lines
222 B
TypeScript
Raw Normal View History

2024-12-22 10:23:37 -08:00
import { SLElem } from "./slelem";
2024-12-21 21:42:54 -08:00
2024-12-22 10:23:37 -08:00
export class SLTab extends SLElem {
2024-12-21 21:42:54 -08:00
constructor(panel: string) {
2024-12-22 10:23:37 -08:00
super("sl-tab");
2024-12-21 21:42:54 -08:00
this.setAttribute("panel", panel);
this.setAttribute("slot", "nav");
}
}