lx-admin-frontend/src/hooks/useDialog.ts

32 lines
502 B
TypeScript
Raw Normal View History

2024-01-26 09:59:05 +08:00
import { Ref } from 'vue';
interface Options {
title?: string;
}
interface Return {
title: Ref<string>;
visible: Ref<boolean>;
openDialog: () => void;
closeDialog: () => void;
}
export default (ops?: Options): Return => {
const visible = ref(false);
const title = ref(ops.title || '');
const openDialog = () => {
visible.value = true;
};
const closeDialog = () => {
visible.value = false;
};
return {
title,
visible,
openDialog,
closeDialog
};
2024-06-28 10:18:18 +08:00
};