mirror of
https://github.com/wassname/template.git
synced 2026-06-27 22:54:13 +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) {
|
|
|
|
}
|