创建项目

This commit is contained in:
2023-01-29 09:13:43 +08:00
parent e8c34e4758
commit f000da0167
212 changed files with 64998 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/** props */
export const propsType = {
flag: {
type: Boolean,
default: false
},
width: {
type: String,
default: "30%"
},
title: {
type: String,
default: "消息"
}
}
/** 自定义hook */
export function dialogHook(emit){
/** dialog关闭 */
const close = (form) => {
emit("update:flag", false)
// 重置表单
form && form.value.handlerFormReset();
};
return {
close
};
}