You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
706 B

2 months ago
import list from "./list.js";
import playerElem from "./playerElem.js";
import scorerElem from "./scorerElem.js";
2 months ago
import plainElem from "./plainElem.js";
import squareElem from "./squareElem.js";
import inputElem from "./inputElem.js";
2 months ago
import select from "./select.js";
2 months ago
// import overlay from "./overlay.js";
import dialog from "./dialog.js";
export default (app) => {
app.component("d-list", list);
app.component("d-playerElem", playerElem);
app.component("d-scorerElem", scorerElem);
2 months ago
app.component("d-plainElem", plainElem);
app.component("d-squareElem", squareElem);
app.component("d-inputElem", inputElem);
2 months ago
app.component("d-select", select);
2 months ago
app.component("d-dialog", dialog);
}