From 44539cf7ac3b3c6172fa68468641d267ee467c71 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Wed, 12 Nov 2025 16:03:33 +0800 Subject: [PATCH] =?UTF-8?q?composables=E5=92=8Cutils=E7=9A=84=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composables/index.js | 2 ++ utils/index.js | 5 +++++ utils/textSolve/index.js | 1 + 3 files changed, 8 insertions(+) create mode 100644 composables/index.js create mode 100644 utils/index.js create mode 100644 utils/textSolve/index.js diff --git a/composables/index.js b/composables/index.js new file mode 100644 index 0000000..78b745a --- /dev/null +++ b/composables/index.js @@ -0,0 +1,2 @@ +export { useCustomerForm } from './useCustomerForm' +export { usePagination } from './usePagination' \ No newline at end of file diff --git a/utils/index.js b/utils/index.js new file mode 100644 index 0000000..08d280b --- /dev/null +++ b/utils/index.js @@ -0,0 +1,5 @@ +export * from './qiniu' +export * from './request' +export * from './taskConfig' +export * from './customerMappings' +export * from './textSolve' \ No newline at end of file diff --git a/utils/textSolve/index.js b/utils/textSolve/index.js new file mode 100644 index 0000000..3688c0b --- /dev/null +++ b/utils/textSolve/index.js @@ -0,0 +1 @@ +export * from './truncateText' \ No newline at end of file