2023-01-29 13:44:19 +08:00
|
|
|
import PiContainer from "./container.vue";
|
|
|
|
|
import PiAccessSelector from "../views/certd/access/access-selector/index.vue";
|
|
|
|
|
import PiDnsProviderSelector from "./dns-provider-selector/index.vue";
|
2024-08-24 01:05:06 +08:00
|
|
|
import PiOutputSelector from "../views/certd/pipeline/pipeline/component/output-selector/index.vue";
|
|
|
|
|
import PiEditable 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";
|
|
|
|
|
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);
|
|
|
|
|
app.component("PiAccessSelector", PiAccessSelector);
|
|
|
|
|
app.component("PiEditable", PiEditable);
|
|
|
|
|
app.component("PiOutputSelector", PiOutputSelector);
|
|
|
|
|
app.component("PiDnsProviderSelector", PiDnsProviderSelector);
|
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
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
};
|