mirror of
https://github.com/wassname/template.git
synced 2026-06-27 19:33:10 +08:00
14 lines
178 B
JavaScript
14 lines
178 B
JavaScript
import {Template} from "../mixins/template";
|
|
|
|
const T = Template("d-toc", `
|
|
<style>
|
|
d-toc {
|
|
display: block;
|
|
}
|
|
</style>
|
|
`, false);
|
|
|
|
export class TOC extends T(HTMLElement) {
|
|
|
|
}
|