add hooks - useDialog

This commit is contained in:
LiuHao 2024-01-26 09:59:05 +08:00
parent 15243ab713
commit 3b18a476b7

31
src/hooks/useDialog.ts Normal file
View File

@ -0,0 +1,31 @@
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
};
};