chore: code format

This commit is contained in:
xiaojunnuo
2025-06-29 14:09:09 +08:00
parent 04422a4637
commit 4fcfd089d8
644 changed files with 10845 additions and 13184 deletions
@@ -18,7 +18,7 @@ const resetButtonOptions = computed(() => {
return {
content: `${$t.value("reset")}`,
show: true,
...unref(rootProps).resetButtonOptions
...unref(rootProps).resetButtonOptions,
};
});
@@ -26,7 +26,7 @@ const submitButtonOptions = computed(() => {
return {
content: `${$t.value("submit")}`,
show: true,
...unref(rootProps).submitButtonOptions
...unref(rootProps).submitButtonOptions,
};
});
@@ -38,7 +38,7 @@ const queryFormStyle = computed(() => {
if (!unref(rootProps).actionWrapperClass) {
return {
"grid-column": `-2 / -1`,
marginLeft: "auto"
marginLeft: "auto",
};
}
@@ -83,7 +83,7 @@ watch(
defineExpose({
handleReset,
handleSubmit
handleSubmit,
});
</script>
<template>