2023-01-29 13:44:19 +08:00
|
|
|
import PiContainer from "./container.vue";
|
2024-10-07 03:21:16 +08:00
|
|
|
import TextEditable from "./editable.vue";
|
2024-09-05 14:33:45 +08:00
|
|
|
import vip from "./vip-button/install.js";
|
2023-01-29 13:44:19 +08:00
|
|
|
import { CheckCircleOutlined, InfoCircleOutlined, UndoOutlined } from "@ant-design/icons-vue";
|
2024-08-27 13:46:19 +08:00
|
|
|
import CronEditor from "./cron-editor/index.vue";
|
2024-10-24 14:46:16 +08:00
|
|
|
import FoldBox from "./fold-box.vue";
|
2024-08-27 13:46:19 +08:00
|
|
|
import { CronLight } from "@vue-js-cron/light";
|
|
|
|
|
import "@vue-js-cron/light/dist/light.css";
|
2024-09-20 19:29:16 +08:00
|
|
|
import Plugins from "./plugins/index";
|
2024-11-30 01:57:09 +08:00
|
|
|
import LoadingButton from "./loading-button.vue";
|
|
|
|
|
import IconSelect from "./icon-select.vue";
|
2024-12-22 14:00:46 +08:00
|
|
|
import ExpiresTimeText from "./expires-time-text.vue";
|
2025-03-19 00:28:50 +08:00
|
|
|
import FileInput from "./file-input.vue";
|
2025-03-21 01:02:57 +08:00
|
|
|
import PemInput from "./pem-input.vue";
|
2023-01-29 13:44:19 +08:00
|
|
|
export default {
|
2024-08-24 01:05:06 +08:00
|
|
|
install(app: any) {
|
2023-01-29 13:44:19 +08:00
|
|
|
app.component("PiContainer", PiContainer);
|
2024-10-07 03:21:16 +08:00
|
|
|
app.component("TextEditable", TextEditable);
|
2025-03-19 00:28:50 +08:00
|
|
|
app.component("FileInput", FileInput);
|
2025-03-21 01:02:57 +08:00
|
|
|
app.component("PemInput", PemInput);
|
2024-09-05 14:33:45 +08:00
|
|
|
|
2024-08-27 13:46:19 +08:00
|
|
|
app.component("CronLight", CronLight);
|
|
|
|
|
app.component("CronEditor", CronEditor);
|
2023-01-29 13:44:19 +08:00
|
|
|
|
2024-10-24 14:46:16 +08:00
|
|
|
app.component("FoldBox", FoldBox);
|
|
|
|
|
|
2023-01-29 13:44:19 +08:00
|
|
|
app.component("CheckCircleOutlined", CheckCircleOutlined);
|
|
|
|
|
app.component("InfoCircleOutlined", InfoCircleOutlined);
|
|
|
|
|
app.component("UndoOutlined", UndoOutlined);
|
2024-09-05 14:33:45 +08:00
|
|
|
|
2024-11-30 01:57:09 +08:00
|
|
|
app.component("LoadingButton", LoadingButton);
|
|
|
|
|
app.component("IconSelect", IconSelect);
|
2024-12-22 14:00:46 +08:00
|
|
|
app.component("ExpiresTimeText", ExpiresTimeText);
|
2024-09-05 14:33:45 +08:00
|
|
|
app.use(vip);
|
2024-09-20 19:29:16 +08:00
|
|
|
app.use(Plugins);
|
2025-03-19 00:28:50 +08:00
|
|
|
},
|
2023-01-29 13:44:19 +08:00
|
|
|
};
|