Working on bootstrap menu component to easily use with Ignite.
This commit is contained in:
parent
e3d2e08b6c
commit
653bacb2c0
29
dropdown-menu.js
Normal file
29
dropdown-menu.js
Normal file
@ -0,0 +1,29 @@
|
||||
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
||||
import { IgniteTemplate, button, ul, slot } from "../ignite-html/ignite-template.js";
|
||||
|
||||
class DropdownMenu extends IgniteElement {
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
render() {
|
||||
return this.template.child(
|
||||
new button().class("dropdown-toggle").attribute("data-toggle", "dropdown").child("menu click"),
|
||||
new ul().class("dropdown-menu").child(
|
||||
new slot(this)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class DropdownMenuTemplate extends IgniteTemplate {
|
||||
constructor(...children) {
|
||||
super("bt-dropdown-menu", children);
|
||||
}
|
||||
}
|
||||
|
||||
customElements.define("bt-dropdown-menu", DropdownMenu);
|
||||
|
||||
export {
|
||||
DropdownMenuTemplate as DropdownMenu
|
||||
};
|
3
ignite-bootstrap.js
Normal file
3
ignite-bootstrap.js
Normal file
@ -0,0 +1,3 @@
|
||||
import { DropdownMenu } from "./dropdown-menu.js";
|
||||
|
||||
export { DropdownMenu }
|
Loading…
x
Reference in New Issue
Block a user