qxk-app-component
Version:
28 lines (27 loc) • 484 B
JavaScript
import FloatingPanel from "./floating-panel";
import Keyboard from "./keyboard";
const version = "1.0.4";
function install(app) {
const components = [
FloatingPanel,
Keyboard
];
components.forEach((item) => {
if (item.install) {
app.use(item);
} else if (item.name) {
app.component(item.name, item);
}
});
}
var stdin_default = {
install,
version
};
export {
FloatingPanel,
Keyboard,
stdin_default as default,
install,
version
};