mirror of https://github.com/halo-dev/halo-admin
feat: add return type to the usePluginLifeCycle function
Signed-off-by: Ryan Wang <i@ryanc.cc>pull/593/head
parent
aff568acb8
commit
edfa8f6a90
|
@ -1,11 +1,19 @@
|
|||
import type { Ref } from "vue";
|
||||
import type { ComputedRef, Ref } from "vue";
|
||||
import { computed } from "vue";
|
||||
import type { Plugin } from "@halo-dev/api-client";
|
||||
import cloneDeep from "lodash.clonedeep";
|
||||
import { apiClient } from "@halo-dev/admin-shared";
|
||||
import { useDialog } from "@halo-dev/components";
|
||||
|
||||
export function usePluginLifeCycle(plugin: Ref<Plugin | null>) {
|
||||
interface usePluginLifeCycleReturn {
|
||||
isStarted: ComputedRef<boolean | undefined>;
|
||||
changeStatus: () => void;
|
||||
uninstall: () => void;
|
||||
}
|
||||
|
||||
export function usePluginLifeCycle(
|
||||
plugin: Ref<Plugin | null>
|
||||
): usePluginLifeCycleReturn {
|
||||
const dialog = useDialog();
|
||||
|
||||
const isStarted = computed(() => {
|
||||
|
|
Loading…
Reference in New Issue