update 恢复误删文件
This commit is contained in:
parent
25189f3052
commit
4c12943e3c
31
src/hooks/useDialog.ts
Normal file
31
src/hooks/useDialog.ts
Normal 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
|
||||
};
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user