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-09-29 15:23:58 +08:00
|
|
|
|
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);
|
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
|
|
|
|
|
|
|
|
app.use(vip);
|
2024-09-20 19:29:16 +08:00
|
|
|
app.use(Plugins);
|
2023-01-29 13:44:19 +08:00
|
|
|
}
|
|
|
|
|
};
|