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.
23 lines
641 B
23 lines
641 B
2 months ago
|
import list from "./list.js";
|
||
|
|
||
|
import playerElem from "./playerElem.js";
|
||
|
import plainElem from "./plainElem.js";
|
||
|
import squareElem from "./squareElem.js";
|
||
|
import inputElem from "./inputElem.js";
|
||
|
|
||
|
import playerselect from "./playerselect.js";
|
||
|
// 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-plainElem", plainElem);
|
||
|
app.component("d-squareElem", squareElem);
|
||
|
app.component("d-inputElem", inputElem);
|
||
|
|
||
|
app.component("d-playerselect", playerselect);
|
||
|
app.component("d-dialog", dialog);
|
||
|
}
|